We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38fb04f commit 9cd0d31Copy full SHA for 9cd0d31
1 file changed
.github/workflows/ci.yml
@@ -32,18 +32,16 @@ jobs:
32
run: pip install poethepoet pre-commit safety
33
34
# NOTE: using custom cache, to include pre-commit linters + deps
35
- - uses: actions/cache@v3
36
- with:
37
- path: |
38
- ~/.cache/pre-commit
39
- ~/.cache/pip
40
- key: ${{ hashFiles('.pre-commit-config.yaml') }}-pre-commit
+ # - uses: actions/cache@v3
+ # with:
+ # path: |
+ # ~/.cache/pre-commit
+ # ~/.cache/pip
+ # key: ${{ hashFiles('.pre-commit-config.yaml') }}-pre-commit
41
42
- name: Check that all static analysis tools run without errors
43
run: |
44
poetry install # so somesy can check itself
45
- somesy sync
46
- git diff
47
poetry run poe lint --all-files
48
49
- name: Scan dependencies for known vulnerabilities
0 commit comments