Skip to content

Commit

Permalink
more work to repair github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
karrmagadgeteer2 committed Oct 9, 2024
1 parent 00932fd commit 44cde7e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Activate virtual environment and install Poetry
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
.\venv\Scripts\activate
source venv/Scripts/activate
else
source venv/bin/activate
fi
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install dependencies with Poetry
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
.\venv\Scripts\activate
source venv/Scripts/activate
else
source venv/bin/activate
fi
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Check and fix with Ruff
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
.\venv\Scripts\activate
source venv/Scripts/activate
else
source venv/bin/activate
fi
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Type check with Mypy
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
.\venv\Scripts\activate
source venv/Scripts/activate
else
source venv/bin/activate
fi
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Tests with Pytest
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
.\venv\Scripts\activate
source venv/Scripts/activate
else
source venv/bin/activate
fi
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Report coverage
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
.\venv\Scripts\activate
source venv/Scripts/activate
else
source venv/bin/activate
fi
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Package and check
run: |
if [[ "$RUNNER_OS" == "Windows" ]]; then
.\venv\Scripts\activate
source venv/Scripts/activate
else
source venv/bin/activate
fi
Expand Down

0 comments on commit 44cde7e

Please sign in to comment.