Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeAeich committed May 18, 2024
1 parent e5ad07a commit 7b9cb0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
# Install only type check dependency
- name: Install dependencies
if: steps.cqtc.outputs.cache-hit != 'true'
run: poetry install --only=types --no-root
run: poetry install --only=types --no-interaction --no-root

- name: Check types
run: poetry run mypy tesk/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vulnerability_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# Install only type check dependency
- name: Install dependencies
if: steps.vt.outputs.cache-hit != 'true'
run: poetry install --only=security --no-root
run: poetry install --only=security --no-interaction --no-root

- name: Check types
run: poetry run bandit -c pyproject.toml -r tesk/
Expand All @@ -52,7 +52,7 @@ jobs:
# Install only type check dependency
- name: Install dependencies
if: steps.vt.outputs.cache-hit != 'true'
run: poetry install --only=security --no-root
run: poetry install --only=security --no-interaction --no-root

- name: Check types
run: poetry run safety check --full-report

0 comments on commit 7b9cb0b

Please sign in to comment.