chore(do): initialise terraform for example #3
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
# .github/workflows/ansible-lint.yml | ||
name: ansible-lint | ||
on: | ||
pull_request: | ||
branches: ["devel", "master"] | ||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ansible_lint_version: | ||
- v6.22.2 | ||
- v24.2.1 | ||
name: Ansible Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run ansible-lint | ||
uses: ansible/ansible-lint@${{ matrix.ansible_lint_version}} | ||
Check failure on line 19 in .github/workflows/lint.yml GitHub Actions / ansible-lintInvalid workflow file
|