ci(workflows): use uv to install dependencies in main workflow run #16
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: | |
- master | |
tags: | |
- "v*.*.*" | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
runs-on: ${{ matrix.os}} | |
steps: | |
- name: Checkout repository 👁️ | |
uses: actions/checkout@v4 | |
- name: Install mold linker 🔗 | |
if: ${{ matrix.os != 'windows-latest' }} | |
uses: rui314/setup-mold@v1 | |
- name: Install Rust 🦀 | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: Setup Rust Cache 🗄️ | |
uses: Swatinem/rust-cache@v2 | |
- name: Install cargo nextest 🚢 | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: nextest | |
- name: Check Rust Formatting 🖌️ | |
run: cargo fmt --check --all | |
- name: Run Cargo Check 🚢 | |
run: cargo check --workspace --all-features | |
- name: Run Cargo Clippy Lint 🧹 | |
run: cargo clippy --all-targets --all-features | |
- name: Run Cargo Test 🧪 | |
run: cargo nextest run --all-features --workspace | |
env: | |
PROPTEST_CASES: 5000 | |
- name: Install Python ${{ matrix.python-version }} 🐍 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install uv installer 🌞 | |
run: pipx install uv | |
- name: Get uv cache directory | |
id: uv-cache | |
run: | | |
echo "cache-dir=$(uv cache dir)" >> $GITHUB_OUTPUT | |
- name: Setup uv Cache | |
uses: actions/cache@v4 | |
with: | |
key: uv-${{ runner.os }}-${{ matrix.python-version }}-pdm | |
path: ${{ steps.uv-cache.outputs.cache-dir }} | |
- name: Setup PDM 📦 | |
uses: pdm-project/[email protected] | |
id: setup-pdm | |
with: | |
cache: true | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python Dependencies (using UV) 📦 | |
run: | | |
pdm export > requirements.txt | |
uv pip install -r requirements.txt --editable . | |
- name: Check Python Formatting 🖌️ | |
run: pdm run ruff check . | |
- name: Check Python Typing 🔤 | |
run: pdm run mypy . | |
- name: Run Python Tests 🧪 | |
run: pdm run pytest -n auto -d --cov=src/ --cov-report=lcov --cov-branch --benchmark-disable --benchmark-skip | |
- name: Upload Coverage Report 📊 | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
file: "./coverage.lcov" | |
parallel: true | |
flag-name: run-${{ matrix.os }}-python-${{ matrix.python-version }} | |
- name: Build wheels 🛞 | |
uses: pypa/[email protected] | |
env: | |
CIBW_BUILD_FRONTEND: build[uv] | |
- name: Upload wheel artifacts 🫖 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-wheels-${{ matrix.os }}-py${{ matrix.python-version }}-${{ strategy.job-index }} | |
path: ./wheelhouse/*.whl | |
finish-coverage: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Finish Coverage Report | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |