We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e246fc commit 1b49106Copy full SHA for 1b49106
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,27 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v5
17
+ with:
18
+ python-version: "3.12"
19
20
+ - name: Install uv
21
+ uses: astral-sh/setup-uv@v3
22
23
+ - name: Install dependencies
24
+ run: uv pip install -e ".[dev]"
25
26
+ - name: Run tests
27
+ run: uv run pytest
0 commit comments