Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,10 @@ on:
branches: [ "main" ]

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]


pipeline:
uses: ./.github/workflows/pipeline.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
os: ubuntu-latest
run-lint: true
run-typecheck: true
run-test: true
Expand Down
17 changes: 16 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,25 @@ jobs:
run-test: true
run-build: true

cross-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
uses: ./.github/workflows/pipeline.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
run-lint: false
run-typecheck: false
run-test: true
run-build: false

pypi-publish:
runs-on: ubuntu-latest
needs:
- build-package
- [build-package, cross-test]
permissions:
id-token: write

Expand Down