-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 849 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Lint
on:
push:
branches: ['master']
paths-ignore:
- '**.md'
pull_request:
branches: ['master']
paths-ignore:
- '**.md'
workflow_dispatch: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- run: pip install --upgrade pip
- run: pip install -r requirements.txt
- name: Install Ansible Galaxy roles
run: ansible-galaxy install -r requirements.yml
- name: Cache Ansible Packages
uses: actions/cache@v4
with:
path: ~/.ansible
key: ${{ runner.os }}-ansible
- name: Lint Playbooks and Roles
run: bin/lint.sh