chore: Rebranding, make ansible-lint happy #17
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: CI - Linting | |
"on": | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
# This workflow contains a single job called "build" | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install requirements | |
run: ansible-galaxy install -r requirements.yml | |
- name: Run ansible-lint | |
uses: ansible/ansible-lint@main | |
- name: yamllint | |
uses: karancode/[email protected] | |
with: | |
yamllint_config_filepath: icinga2_agent/.testenv/yamllint.yml | |
yamllint_file_or_dir: icinga2_agent |