Skip to content

Commit 0e624b2

Browse files
committed
.
1 parent 5a83697 commit 0e624b2

2 files changed

Lines changed: 19 additions & 3 deletions

File tree

.github/workflows/format.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,3 @@ jobs:
1717

1818
- name: Run linter
1919
run: poetry run ruff check .
20-
21-
- name: Check formatting
22-
run: poetry run ruff format --check .

0 commit comments

Comments
 (0)