Skip to content

Commit b217388

Browse files
committed
Fix if condition
1 parent 96b37a3 commit b217388

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@ jobs:
5656
with:
5757
python-version: "3.8"
5858
- name: Install on Windows
59-
if: ${{ matrix.os }} == "windows-latest"
59+
if: matrix.os == 'windows-latest'
6060
run: |
6161
pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@main
6262
clang-tools --install ${{ matrix.version }}
6363
- name: Install on Linux
64-
if: ${{ matrix.os }} == "ubuntu-latest"
64+
if: matrix.os == 'ubuntu-latest'
6565
run: |
6666
sudo pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@main
6767
sudo clang-tools --install ${{ matrix.version }}
6868
- name: Install on MacOS
69-
if: ${{ matrix.os }} == "macos-latest"
69+
if: matrix.os == 'macos-latest'
7070
run: |
7171
pip install git+https://github.com/shenxianpeng/clang-tools-pip.git@main
7272
clang-tools --install ${{ matrix.version }} --directory .

0 commit comments

Comments
 (0)