chore(deps): Bump build requirements #303
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python python3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: Set up rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Set up rustfmt | |
run: rustup component add rustfmt | |
# Maturin requires a venv to be activated, that's why we have to create one here | |
- name: Create virtualenv | |
run: | | |
python -m venv .venv | |
source .venv/bin/activate | |
make install-test-requirements | |
- name: Lint | |
run: | | |
source .venv/bin/activate | |
make lint | |
- name: Test | |
run: | | |
source .venv/bin/activate | |
make test-ci | |
macos: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build (fast) | |
uses: messense/maturin-action@v1 | |
with: | |
command: build | |
target: universal2-apple-darwin | |
args: "-o dist --interpreter python${{ matrix.python-version }}" |