Skip to content

Commit 63e6af6

Browse files
author
UnravelSports [JB]
committed
fix2
1 parent d155908 commit 63e6af6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/pytest.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@ jobs:
3535
env:
3636
PYTHONIOENCODING: utf-8 # Ensure Python uses UTF-8 encoding
3737
run: |
38-
if ($Env:RUNNER_OS -eq 'Windows') {
38+
if [[ "${{ runner.os }}" == "Windows" ]]; then
3939
chcp 65001
4040
python -m pip install -e .[test]
41-
} else {
41+
else
4242
python -m pip install -e .[test]
43-
}
43+
fi
44+
shell: bash
45+
4446

4547
- name: Code formatting
4648
run: |

0 commit comments

Comments
 (0)