Bump darbiadev/.github from 5083c96ad92e1a10fbcf34a04221da8d353e894a to 5f704c2b5aa4a48d52e37e40ba540b15620e45b5 #70
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@5f704c2b5aa4a48d52e37e40ba540b15620e45b5 | |
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 }} |