Skip to content

Handle filtering by name and minor exceptions #7

Handle filtering by name and minor exceptions

Handle filtering by name and minor exceptions #7

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