Linting ansible-controller in github #10
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 | |
run-name: Linting ansible-controller in github | |
on: [push] | |
jobs: | |
ansible-lint: | |
runs-on: ubuntu-latest | |
container: | |
image: lyricistmarbling/ansible-ci-image:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- run: | | |
for role in $(ls tools/roles_lists) ; do ./tools/get-roles.sh $role ; done | |
ansible-lint --exclude tools --exclude roles |