We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d816c27 commit 150fb29Copy full SHA for 150fb29
.github/workflows/python-test.yml
@@ -57,9 +57,14 @@ jobs:
57
with:
58
python-version: "3.8"
59
- name: Install dependencies
60
+ run: python -m pip install --upgrade pip
61
+ - name: Install on windows
62
+ if: ${{ matrix.os }} == " windows-latest"
63
run: |
- python -m pip install --upgrade pip
- sudo pip install .
- - 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"
68
69
+ sudo pip install .
70
sudo clang-tools --install ${{ matrix.version }}
0 commit comments