Merge pull request #1283 from mulkieran/cancel-outdated-test-runs #1411
This file contains hidden or 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: stratis-cli CI for support code | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'CHANGES.txt' | |
| - '**/README.rst' | |
| - 'LICENSE' | |
| - 'docs/**' | |
| - 'shell-completion/**' | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'CHANGES.txt' | |
| - '**/README.rst' | |
| - 'LICENSE' | |
| - 'docs/**' | |
| - 'shell-completion/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| python-checks: | |
| strategy: | |
| matrix: | |
| include: | |
| - dependencies: yamllint | |
| task: make -f Makefile yamllint | |
| runs-on: ubuntu-latest | |
| container: | |
| image: quay.io/fedora/fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install dependencies | |
| run: > | |
| dnf install -y | |
| make | |
| ${{ matrix.dependencies }} | |
| - name: Run test | |
| run: ${{ matrix.task }} |