Skip to content

ci: fix ubuntu-arm matrix #3

ci: fix ubuntu-arm matrix

ci: fix ubuntu-arm matrix #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up runtime
run: uv sync --all-extras
- name: Run linter
run: uv run ruff check .
- name: Run tests
run: uv run pytest tests