Skip to content

Updated version of collection to bring up considerations for AAP 2.5 #14

Updated version of collection to bring up considerations for AAP 2.5

Updated version of collection to bring up considerations for AAP 2.5 #14

Workflow file for this run

---
name: Lint
'on':
pull_request:
branches:
- main
push:
branches:
- main
jobs:
yamllint:
name: yamllint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v3
- name: Set up Python.
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install yamllist
run: pip3 install yamllint
- name: Run yamllint.
run: yamllint .
ansible-lint:
name: ansible-lint
runs-on: ubuntu-latest
steps:
- name: Checkout the codebase.
uses: actions/checkout@v3
- name: Set up Python.
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install ansible and other packages
run: pip3 install ansible ansible-lint
- name: Run ansible-lint.
run: ansible-lint