Skip to content

Commit 150fb29

Browse files
committed
Fix install on windows
1 parent d816c27 commit 150fb29

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/python-test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,14 @@ jobs:
5757
with:
5858
python-version: "3.8"
5959
- name: Install dependencies
60+
run: python -m pip install --upgrade pip
61+
- name: Install on windows
62+
if: ${{ matrix.os }} == " windows-latest"
6063
run: |
61-
python -m pip install --upgrade pip
62-
sudo pip install .
63-
- name: Install clang-tools
64+
pip install .
65+
clang-tools --install ${{ matrix.version }}
66+
- name: Install on Linux or MacOS
67+
if: ${{ matrix.os }} != " windows-latest"
6468
run: |
69+
sudo pip install .
6570
sudo clang-tools --install ${{ matrix.version }}

0 commit comments

Comments
 (0)