Skip to content

feat: migrate to uv + add ContainerGrader for Kubernetes/Docker sandboxed grading #10

feat: migrate to uv + add ContainerGrader for Kubernetes/Docker sandboxed grading

feat: migrate to uv + add ContainerGrader for Kubernetes/Docker sandboxed grading #10

Workflow file for this run

name: Python CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
run_tests:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
python-version: ['3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Run Tests
run: uv run --python ${{ matrix.python-version }} pytest --cov=xqueue_watcher --cov-report=xml tests
- name: Run Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true