Bump darbiadev/.github from 5083c96ad92e1a10fbcf34a04221da8d353e894a to ee7e2b19d4ccee9495616f6b25bd14600cc13e02 #74
Workflow file for this run
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@main | |
lint: | |
needs: pre-commit | |
uses: darbiadev/.github/.github/workflows/python-lint.yaml@ee7e2b19d4ccee9495616f6b25bd14600cc13e02 | |
test: | |
needs: lint | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
python-version: [ "3.10", "3.11" ] | |
uses: darbiadev/.github/.github/workflows/python-test.yaml@main | |
with: | |
os: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} |