Fixes the Anthias installer so that it'll work on Debian Bookworm as well #128
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: | |
branches: | |
- master | |
- production | |
paths: | |
- 'ansible/**' | |
pull_request: | |
branches: | |
- master | |
- production | |
paths: | |
- 'ansible/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run ansible-lint | |
uses: ansible-community/ansible-lint-action@main | |
with: | |
path: "ansible/" |