Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

permissions:
contents: read

jobs:
test:
name: Unit tests (Python 3.13)
runs-on: windows-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Install uv and Python
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
python-version: "3.13"

Comment on lines +23 to +28
- name: Install dependencies
run: uv sync --frozen --extra dev

- name: Run unit tests
run: uv run --frozen --extra dev pytest
Comment on lines +32 to +33
Loading