chore(do): initialise terraform for example #9
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: | |
# Apparently, variables do not have a context until actions are actually executed | |
# so we cannot make a matrix out of action versions. | |
# Thanks, Obama. | |
# See https://github.com/orgs/community/discussions/110550 | |
name: Ansible Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ansible-lint | |
uses: ansible/[email protected] |