Skip to content

Hopefully now fixed bug #143

Hopefully now fixed bug

Hopefully now fixed bug #143

Workflow file for this run

name: Tests
on:
push:
branches: [main]
jobs:
Tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Check lockfile
run: uv lock --check
- name: Test with pytest
run: uv run pytest tests -p no:pl-grader