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 9cc903d commit 8bb9c28Copy full SHA for 8bb9c28
1 file changed
.github/workflows/test-lint.yaml
@@ -36,15 +36,16 @@ jobs:
36
- name: Install dependencies
37
run: uv sync
38
39
+ - name: Run ruff
40
+ run: uv run ruff check --output-format=github
41
+ continue-on-error: true
42
+
43
- name: Run pytest
- run: uv run pytest tests/platform_independent
44
+ run: uv run pytest tests/
45
46
- name: Run on self
47
run: |
48
uv run licensecheck -r pyproject.toml
49
uv run licensecheck --only-licenses mit apache --show-only-failing -g dev -r pyproject.toml
50
uv run licensecheck --only-licenses mit apache --show-only-failing -f csv -r pyproject.toml
51
- - name: Run ruff
- run: uv run ruff check --output-format=github
- continue-on-error: true
0 commit comments