ci: ignore test
Browse files- .github/workflows/ci.yml +4 -0
.github/workflows/ci.yml
CHANGED
@@ -34,6 +34,10 @@ jobs:
|
|
34 |
|
35 |
- name: Run pre-commit hooks
|
36 |
uses: pre-commit/[email protected]
|
|
|
|
|
|
|
|
|
37 |
|
38 |
- name: Run tests
|
39 |
run: poetry run pytest
|
|
|
34 |
|
35 |
- name: Run pre-commit hooks
|
36 |
uses: pre-commit/[email protected]
|
37 |
+
with:
|
38 |
+
extra_args: --all-files
|
39 |
+
env:
|
40 |
+
PRE_COMMIT_CACHE_KEY: ${{ hashFiles('.pre-commit-config.yaml', 'pyproject.toml') }}
|
41 |
|
42 |
- name: Run tests
|
43 |
run: poetry run pytest
|