Use workspace dependencies for chrono and num-complex (#115) #283
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 | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
crate: | |
- pure | |
- mixed | |
- mixed_sub | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
- name: Build and install | |
run: pip install -v "./examples/${{ matrix.crate }}[test]" | |
- name: Python Test | |
run: pytest | |
working-directory: ./examples/${{ matrix.crate }} | |
- name: Type check | |
run: pyright | |
working-directory: ./examples/${{ matrix.crate }} | |
- name: Lint | |
run: ruff check | |
working-directory: ./examples/${{ matrix.crate }} |