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 3b57b2a commit 7e6dd91Copy full SHA for 7e6dd91
.github/workflows/style.yml
@@ -0,0 +1,21 @@
1
+name: Style Check
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ style:
13
+ name: Style Check
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: astral-sh/setup-uv@v3
18
+ - name: Install Python
19
+ run: uv python install 3.11
20
+ - name: Check style
21
+ run: uv run --extra dev black --check --diff .
0 commit comments