There was an error while loading. Please reload this page.
1 parent eeeb567 commit b0c626cCopy full SHA for b0c626c
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,20 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Install uv
14
+ uses: astral-sh/setup-uv@v3
15
+ - name: Set up Python
16
+ run: uv python install 3.12
17
+ - name: Install dependencies
18
+ run: uv sync --group dev --group eval
19
+ - name: Run tests
20
+ run: uv run pytest -v
0 commit comments