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 150fb29 commit 8bb4e31Copy full SHA for 8bb4e31
.github/workflows/python-test.yml
@@ -51,7 +51,6 @@ jobs:
51
os: [ ubuntu-latest, macos-latest, windows-latest ]
52
runs-on: ${{ matrix.os }}
53
steps:
54
- - uses: actions/checkout@v3
55
- name: Set up Python 3.8
56
uses: actions/setup-python@v3
57
with:
@@ -61,10 +60,10 @@ jobs:
61
60
- name: Install on windows
62
if: ${{ matrix.os }} == " windows-latest"
63
run: |
64
- pip install .
+ pip install clang-tools
65
clang-tools --install ${{ matrix.version }}
66
- name: Install on Linux or MacOS
67
if: ${{ matrix.os }} != " windows-latest"
68
69
- sudo pip install .
+ sudo pip install clang-tools
70
sudo clang-tools --install ${{ matrix.version }}
0 commit comments