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 56295e3 commit f0a0984Copy full SHA for f0a0984
.github/workflows/ci.yml
@@ -0,0 +1,35 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main, chore/ci-setup]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ test-and-lint:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Install uv
16
+ uses: astral-sh/setup-uv@v5
17
18
+ - name: "Set up Python"
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version: "3.11"
22
+# python-version-file: "pyproject.toml"
23
24
+ - name: Install dependencies
25
+ run: |
26
+ uv sync
27
+ uv sync requirements-dev.txt
28
29
+ - name: Run tests
30
31
+ pytest
32
33
+ - name: Lint with flake8
34
35
+ flake8 .
0 commit comments