We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a63f4e5 commit 777abc2Copy full SHA for 777abc2
1 file changed
.github/workflows/test.yaml
@@ -4,6 +4,10 @@ name: Tests
4
on:
5
push:
6
branches: [main]
7
+ paths:
8
+ - "**/*.py"
9
+ - "pyproject.toml"
10
+ - "poetry.lock"
11
pull_request:
12
13
@@ -46,7 +50,11 @@ jobs:
46
50
- name: Install package
47
51
run: poetry install --all-extras
48
52
53
+ - name: Format
54
+ run: poetry run ruff format --check .
55
+
49
56
- name: Lint
57
+ if: always()
58
run: poetry run ruff check --output-format=github .
59
60
- name: Typecheck
0 commit comments