Merge playbooks into one #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Linters" | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
"Ansible Lint": | ||
Check failure on line 9 in .github/workflows/ansible.yml GitHub Actions / LintersInvalid workflow file
|
||
name: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
- name: Run ansible-lint | ||
run: | | ||
pipx install ansible-lint | ||
ansible-galaxy collection install -r orchestration/requirements.yml | ||
ansible-lint -p orchestration -v |