Skip to content

Commit b8dcf8d

Browse files
Fix windows-2022 in CI
1 parent e340bbf commit b8dcf8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
python -m venv .venv
4242
4343
- name: Activate virtual environment (Windows)
44-
if: matrix.os == windows-2022
44+
if: matrix.os == 'windows-2022'
4545
run: |
4646
.venv\Scripts\activate
4747
4848
- name: Activate virtual environment (Linux/macOS)
49-
if: matrix.os != windows-2022
49+
if: matrix.os != 'windows-2022'
5050
run: |
5151
source .venv/bin/activate
5252

0 commit comments

Comments
 (0)