Skip to content

Convert to astral based tooling #67

Convert to astral based tooling

Convert to astral based tooling #67

Workflow file for this run

---
name: CI tasks
on:
pull_request: {}
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install venv
run: ./tools/uv sync --extra tools --locked
- name: Run tests
shell: bash
run: ./tools/ci tests -v