Increase GitHub Action checkout version to v6 #1184
Workflow file for this run
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: ci repo CI | |
| # yamllint disable-line rule:truthy | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| python-checks: | |
| strategy: | |
| matrix: | |
| include: | |
| # MANDATORY CHECKS USING CURRENT DEVELOPMENT INTERPRETER | |
| - dependencies: > | |
| libatomic | |
| pylint | |
| python3-dbus | |
| python3-dbus-python-client-gen | |
| python3-matplotlib | |
| python3-numpy | |
| python3-pygithub | |
| python3-requests | |
| python3-semantic_version | |
| python3-specfile | |
| task: PATH=${PATH}:/github/home/.local/bin make -f Makefile lint | |
| - dependencies: > | |
| black | |
| python3-isort | |
| shfmt | |
| task: make -f Makefile fmt-travis | |
| - dependencies: > | |
| yamllint | |
| task: make -f Makefile yamllint | |
| - dependencies: > | |
| findutils | |
| ShellCheck | |
| task: make -f Makefile shellcheck | |
| runs-on: ubuntu-latest | |
| container: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install dependencies | |
| run: > | |
| dnf install -y | |
| make | |
| pip | |
| ${{ matrix.dependencies }} | |
| - name: Install pyright | |
| run: pip install --user pyright | |
| - name: Run test | |
| run: ${{ matrix.task }} |