feat: add github actions

This commit is contained in:
Teesh 2025-03-13 20:36:29 +02:00
parent 256a442628
commit a77d917f4c
2 changed files with 12 additions and 0 deletions

11
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,11 @@
name: GitHub Actions Demo
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: "uv venv"
- run: "uv sync"
- run: "uv run pytest"