We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b970b1 commit 19fb878Copy full SHA for 19fb878
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: ["main", "master"]
6
+ pull_request:
7
8
+concurrency:
9
+ group: ci-${{ github.ref }}
10
+ cancel-in-progress: true
11
12
+permissions:
13
+ contents: read
14
15
+jobs:
16
+ test:
17
+ name: Test (Python 3.12)
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
21
22
+ - uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v6
23
+ with:
24
+ enable-cache: true
25
26
+ - name: Set up Python
27
+ run: uv python install 3.12
28
29
+ - name: Install dependencies
30
+ run: uv sync --locked
31
32
+ - name: Test
33
+ run: uv run pytest -v
0 commit comments