Skip to content

Commit

Permalink
fix(mypy): fix workflow on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Nov 10, 2024
1 parent e9d1650 commit 8610db5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/mypy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:

- name: Install Poetry
uses: snok/install-poetry@v1

- name: Add Poetry to PATH on Windows
if: runner.os == 'Windows'
run: $env:Path += ";$env:USERPROFILE\.poetry\bin"

- name: Install Dependencies
run: poetry install --no-interaction
Expand Down

0 comments on commit 8610db5

Please sign in to comment.