Skip to content

Commit

Permalink
Set OS path dynamically
Browse files Browse the repository at this point in the history
I have a sneaky suspicions that the jobs failed due to an incorrect path
  • Loading branch information
Ce11an committed Mar 10, 2024
1 parent e11546e commit 926f384
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ jobs:
with:
python-version: '3.11'

- name: Update PATH
if: ${{ matrix.os != 'windows' }}
run: echo "$HOME/.local/bin" >> $GITHUB_PATH

- name: Update Path for Windows
if: ${{ matrix.os == 'windows' }}
run: echo "$APPDATA\Python\Scripts" >> $GITHUB_PATH

- run: pip install docker requests

- run: pip install -e .
Expand All @@ -90,3 +98,4 @@ jobs:

- run: cargo test


0 comments on commit 926f384

Please sign in to comment.