We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85c033f commit 969e90dCopy full SHA for 969e90d
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,32 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches: ["**"]
6
+ pull_request:
7
8
+jobs:
9
+ test:
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ python-version: ["3.12", "3.13"]
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
+ with:
19
+ lfs: true
20
21
+ - name: Set up uv and Python
22
+ uses: astral-sh/setup-uv@v4
23
24
+ python-version: ${{ matrix.python-version }}
25
26
+ - name: Show Python and uv versions
27
+ run: |
28
+ python -V
29
+ uv --version
30
31
+ - name: Run test suite
32
+ run: uv run pytest -q
0 commit comments