Skip to content

Commit ef35ac8

Browse files
committed
Update for testing
1 parent 363454d commit ef35ac8

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/python-test.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
matrix:
4848
# version: [ 3.9, 4, 5, 6, 7, 8, 9, 10, 11, 12, 12.0.1, 13, 14 ]
4949
version: [ 10, 11 ]
50-
# directory: ["", "."]
5150
os: [ ubuntu-latest, macos-latest, windows-latest ]
5251
runs-on: ${{ matrix.os }}
5352
steps:
@@ -56,12 +55,17 @@ jobs:
5655
with:
5756
python-version: "3.8"
5857
- name: Install on windows
59-
# if: ${{ matrix.os }} == " windows-latest"
58+
if: ${{ matrix.os }} == " windows-latest"
6059
run: |
6160
pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@main
6261
clang-tools --install ${{ matrix.version }}
63-
# - name: Install on Linux or MacOS
64-
# if: ${{ matrix.os }} != " windows-latest"
65-
# run: |
66-
# sudo pip install clang-tools
67-
# sudo clang-tools --install ${{ matrix.version }}
62+
- name: Install on Linux
63+
if: ${{ matrix.os }} == "ubuntu-latest"
64+
run: |
65+
sudo pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@main
66+
sudo clang-tools --install ${{ matrix.version }}
67+
- name: Install on MacOS
68+
if: ${{ matrix.os }} == "macos-latest"
69+
run: |
70+
pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@main
71+
clang-tools --install ${{ matrix.version }} --directory .

0 commit comments

Comments
 (0)