This repository was archived by the owner on Jan 6, 2026. It is now read-only.
Bump the ci-dependencies group across 1 directory with 5 updates #70
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: Python CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| pre-commit: | |
| uses: darbiadev/.github/.github/workflows/generic-precommit.yaml@91dda16028f109ac78016dd740206fd109740068 # v15.0.0 | |
| lint: | |
| needs: pre-commit | |
| uses: darbiadev/.github/.github/workflows/python-lint.yaml@91dda16028f109ac78016dd740206fd109740068 # v15.0.0 | |
| test: | |
| needs: lint | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| python-version: [ "3.9", "3.10", "3.11" ] | |
| uses: darbiadev/.github/.github/workflows/python-test.yaml@91dda16028f109ac78016dd740206fd109740068 # v15.0.0 | |
| with: | |
| os: ${{ matrix.os }} | |
| python-version: ${{ matrix.python-version }} | |
| secrets: | |
| codecov-token: ${{ secrets.CODECOV_TOKEN }} | |
| docs: | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| uses: darbiadev/.github/.github/workflows/github-pages-python-sphinx.yaml@91dda16028f109ac78016dd740206fd109740068 # v15.0.0 |