Skip to content

Commit

Permalink
fix: install role requirements before linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lstig committed Feb 10, 2024
1 parent 42ab1fa commit cff18cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
python-version: 3.x

- name: Install test dependencies.
run: pip3 install yamllint ansible-lint
run: |
pip3 install ansible ansible-lint yamllint
ansible-galaxy install -r "$(find . -name requirements.yml)"
- name: Lint code.
run: |
Expand Down

0 comments on commit cff18cc

Please sign in to comment.