Skip to content

Yet another rewrite #73

Yet another rewrite

Yet another rewrite #73

Workflow file for this run

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@main
test:
needs: lint
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ "3.11.4" ]
uses: darbiadev/.github/.github/workflows/python-test.yaml@main
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}