1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
name: CI
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
resolve:
runs-on: ubuntu-latest
outputs:
MSRV: ${{ steps.resolve-msrv.outputs.MSRV }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: resolve MSRV
id: resolve-msrv
run: echo MSRV=`python -c 'import tomllib; print(tomllib.load(open("Cargo.toml", "rb"))["package"]["rust-version"])'` >> $GITHUB_OUTPUT
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check rust formatting (rustfmt)
run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy --all
build:
needs: [resolve, fmt] # don't wait for clippy as fails rarely and takes longer
name: python${{ matrix.python-version }} ${{ matrix.os }} rust-${{ matrix.rust}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # If one platform fails, allow the rest to keep testing.
matrix:
python-architecture: ["x64"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
os: ["macos-13", "ubuntu-latest", "windows-latest"]
rust: [stable]
include:
- python-version: "3.13"
os: "ubuntu-latest"
rust: ${{ needs.resolve.outputs.MSRV }}
- python-version: "3.13"
python-architecture: "arm64"
os: "macos-latest"
rust: "stable"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.python-python-architecture }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- uses: Swatinem/rust-cache@v2
continue-on-error: true
- if: ${{ matrix.rust == needs.resolve.outputs.MSRV }}
name: Set dependencies on MSRV
run: cargo +stable update
env:
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: fallback
- name: Test
run: cargo test --verbose
# https://github.com/PyO3/pyo3/issues/4709 - can't use abi3 w. freethreaded build
- if: ${{ !endsWith(matrix.python-version, 't') }}
name: Test (abi3)
run: cargo test --verbose --features pyo3/abi3-py37
env:
RUST_BACKTRACE: 1
coverage:
needs: [fmt]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
continue-on-error: true
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- run: |
cargo llvm-cov clean
cargo llvm-cov --codecov --output-path codecov.json
- uses: codecov/codecov-action@v4
with:
file: codecov.json
token: ${{ secrets.CODECOV_TOKEN }}
|