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 e879fab commit 231bc62Copy full SHA for 231bc62
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,26 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - migrate-to-gh-actions
7
+ pull_request:
8
9
10
11
+jobs:
12
+ check-code-formatting:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v6
16
17
+ - name: Install uv
18
+ uses: astral-sh/setup-uv@v7
19
+ with:
20
+ python-version: "3.12"
21
22
+ - name: Install dependencies
23
+ run: uv sync --extra dev_core
24
25
+ - name: Check code formatting with ruff
26
+ run: uv run ruff format --check .
0 commit comments