There was an error while loading. Please reload this page.
1 parent 5a83697 commit 0e624b2Copy full SHA for 0e624b2
2 files changed
.github/workflows/format.yml
@@ -0,0 +1,19 @@
1
+name: Run formatter
2
+
3
+on:
4
+ - push
5
6
+permissions:
7
+ contents: read
8
9
+jobs:
10
+ format:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: ./.github/workflows/install_deps
17
18
+ - name: Run formatter
19
+ run: poetry run ruff format --check .
.github/workflows/lint.yml
@@ -17,6 +17,3 @@ jobs:
- name: Run linter
run: poetry run ruff check .
20
-
21
- - name: Check formatting
22
- run: poetry run ruff format --check .
0 commit comments