Skip to content

Commit 8bb4e31

Browse files
committed
Don't need to checkout src
1 parent 150fb29 commit 8bb4e31

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/python-test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ jobs:
5151
os: [ ubuntu-latest, macos-latest, windows-latest ]
5252
runs-on: ${{ matrix.os }}
5353
steps:
54-
- uses: actions/checkout@v3
5554
- name: Set up Python 3.8
5655
uses: actions/setup-python@v3
5756
with:
@@ -61,10 +60,10 @@ jobs:
6160
- name: Install on windows
6261
if: ${{ matrix.os }} == " windows-latest"
6362
run: |
64-
pip install .
63+
pip install clang-tools
6564
clang-tools --install ${{ matrix.version }}
6665
- name: Install on Linux or MacOS
6766
if: ${{ matrix.os }} != " windows-latest"
6867
run: |
69-
sudo pip install .
68+
sudo pip install clang-tools
7069
sudo clang-tools --install ${{ matrix.version }}

0 commit comments

Comments
 (0)