Skip to content

Commit

Permalink
Fix if statement in test
Browse files Browse the repository at this point in the history
  • Loading branch information
rytheranderson committed Dec 2, 2023
1 parent 6afb020 commit 17e3d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-deps.outputs.cache-hit != "true"
if: steps.cached-poetry-deps.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install library
run: poetry install --no-interaction
Expand Down

0 comments on commit 17e3d7a

Please sign in to comment.