Skip to content

Commit

Permalink
fix: test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherfrige committed Mar 12, 2024
1 parent d8b52aa commit 7f3d695
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/lint-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,14 @@ jobs:
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
path: ./.venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}


- name: Install dependencies
run: poetry install --no-interaction --no-root
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'


- name: Install library
run: poetry install --no-interaction


- name: Run linter
run: make run-lint

0 comments on commit 7f3d695

Please sign in to comment.