Skip to content

Commit

Permalink
Fix poetry installl issue
Browse files Browse the repository at this point in the history
  • Loading branch information
meghdadFar committed May 26, 2023
1 parent 8f38d75 commit 814a736
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry==1.4.2
run: |
python -m pip install --upgrade pip
python -m pip install poetry==1.4.2
- name: Install Dependencies
run: poetry install
- name: Install Pre-commit
Expand All @@ -33,3 +35,7 @@ jobs:
run: pre-commit run --files wordview/
- name: Running Tests with pytest
run: poetry run pytest




0 comments on commit 814a736

Please sign in to comment.