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 4eb8d43 commit d8f188aCopy full SHA for d8f188a
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Install uv
17
+ uses: astral-sh/setup-uv@v5
18
+ with:
19
+ enable-cache: true
20
21
+ - name: Set up Python
22
+ uses: actions/setup-python@v5
23
24
+ python-version-file: "pyproject.toml"
25
26
+ - name: Install dependencies
27
+ run: uv sync --frozen
28
29
+ - name: Run tests
30
+ run: uv run manage.py test
0 commit comments