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 6567607 commit b25101dCopy full SHA for b25101d
.github/workflows/CI.yml
@@ -0,0 +1,34 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version-file: .python-version
23
24
+ - name: Install uv
25
+ uses: astral-sh/setup-uv@v3
26
27
+ - name: Install dependencies
28
+ run: uv sync
29
30
+ - name: Build package
31
+ run: uv build
32
33
+ - name: Run tests
34
+ run: uv run python -m unittest discover -s tests
uv.lock
0 commit comments