Merge pull request #111 from irish1986/renovate/lscr.io-linuxserver-p… #1141
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 - Main | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'README.md' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'README.md' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
main: | |
name: Main Workflow | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Run ansible-lint | |
uses: ansible/ansible-lint@v24.9.2 | |
with: | |
args: "-c ./.config/.ansible-lint.yml" | |
setup_python: "true" | |
working_directory: "" | |
requirements_file: "./ansible/collections/requirements.yml" |