add tests
Run Tests / Run Tests (push) Failing after 17s Details

This commit is contained in:
James Ravenscroft 2024-12-08 16:26:38 +00:00
parent ef2b8497b0
commit f3a8191ffc
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest