Add BW CLI install playbook #58
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: | |
[push, workflow_dispatch] | |
jobs: | |
lint: | |
name: Ansible lint | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup ansible-lint | |
run: sudo apt-get install ansible-lint -y | |
- name: Run ansible-lint | |
run: ansible-lint 2>&1 >> $GITHUB_STEP_SUMMARY |