Either I'm dead or my watch has stopped. #146
Workflow file for this run
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: Ansible Lint | |
on: | |
pull_request: | |
branches: ["main", "develop"] | |
push: | |
branches: ["main", "develop", "bugfix/*"] | |
jobs: | |
build: | |
name: Run Ansible Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v4 | |
- name: Run ansible lint | |
uses: ansible/[email protected] | |
with: | |
args: "-v" | |
# - name: Install ansible-lint with pip | |
# run: | | |
# sudo apt update | |
# sudo apt install pip git | |
# pip install ansible-core ansible-lint | |
# - name: Run ansible-lint on our repo | |
# run: | | |
# ansible-lint -v -s --project-dir . |