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 f84f87e commit f927060Copy full SHA for f927060
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI Pipeline
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ ci:
7
+ name: Continuous Integration
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v4
13
14
+ - name: Install uv
15
+ uses: astral-sh/setup-uv@v6
16
+ with:
17
+ enable-cache: true
18
19
+ - name: Install project
20
+ run: uv sync --locked --all-extras --dev
21
22
+ - name: Check formatting
23
+ run: uv run ruff format --check
24
25
+ - name: Check import sort
26
+ run: uv run ruff check --select I
27
28
+ - name: Lint code
29
+ run: uv run ruff check
30
31
+ - name: Run tests
32
+ run: uv run pytest -v tests/
0 commit comments