We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 725f041 commit 116ea19Copy full SHA for 116ea19
2 files changed
.github/workflows/format.yml
@@ -0,0 +1,29 @@
1
+# Based on https://docs.astral.sh/uv/guides/integration/github/#multiple-python-versions
2
+name: Format
3
+
4
+# trigger on PRs and main branches
5
+on:
6
+ pull_request:
7
+ push:
8
+ branches:
9
+ - master
10
+ - develop
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-24.04
15
16
+ steps:
17
+ - uses: actions/checkout@v5
18
19
+ - name: Install uv
20
+ uses: astral-sh/setup-uv@v6
21
+ with:
22
+ version: "0.9.5"
23
24
+ - name: Install dependencies
25
+ run: uv sync --dev
26
27
+ - name: Check format
28
+ run: |
29
+ uv run ruff format --check
.github/workflows/code_style.yml .github/workflows/lint.yml.github/workflows/code_style.yml renamed to .github/workflows/lint.yml
@@ -1,5 +1,5 @@
# Based on https://docs.astral.sh/uv/guides/integration/github/#multiple-python-versions
-name: Code Style
+name: Lint
# trigger on PRs and main branches
on:
0 commit comments