Bump python from afc139a
to 740d94a
in the docker-dependencies group
#38
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: "Python CI" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
pre-commit: | |
uses: darbiadev/.github/.github/workflows/generic-precommit.yaml@142663fca1c211af6a7dccf3a57cac48cfc3c017 # v13.0.5 | |
lint: | |
needs: pre-commit | |
uses: darbiadev/.github/.github/workflows/python-lint.yaml@142663fca1c211af6a7dccf3a57cac48cfc3c017 # v13.0.5 | |
test: | |
needs: lint | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
python-version: [ "3.12" ] | |
uses: darbiadev/.github/.github/workflows/python-test.yaml@142663fca1c211af6a7dccf3a57cac48cfc3c017 # v13.0.5 | |
with: | |
os: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
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@142663fca1c211af6a7dccf3a57cac48cfc3c017 # v13.0.5 |