Skip to content

Commit 37becf7

Browse files
authored
Update python-test.yml
1 parent fe8b555 commit 37becf7

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
@@ -45,11 +45,16 @@ jobs:
4545
install:
4646
strategy:
4747
matrix:
48-
version: [ 3.9, 4, 5, 6, 7, 8, 9, 10, 11, 12, 12.0.1, 13, 14 ]
49-
directory: ["", "."]
48+
# version: [ 3.9, 4, 5, 6, 7, 8, 9, 10, 11, 12, 12.0.1, 13, 14 ]
49+
version: [ 10, 11 ]
50+
# directory: ["", "."]
5051
runner: [ ubuntu-latest, macos-latest, windows-latest ]
5152
runs-on: ${{ matrix.runner }}
5253
steps:
54+
- name: Install dependencies
55+
run: |
56+
python -m pip install --upgrade pip
57+
sudo pip install .
5358
- name: Install clang-tools
5459
run: |
55-
sudo clang-tools --install ${{ matrix.version }} --directory ${{ matrix.directory }}
60+
sudo clang-tools --install ${{ matrix.version }}

0 commit comments

Comments
 (0)