Skip to content

Commit 28994b0

Browse files
committed
test: add condition to test
1 parent a21141d commit 28994b0

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/python-test.yml renamed to .github/workflows/test.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3-
41
name: Test
52

63
on:
@@ -101,7 +98,7 @@ jobs:
10198
- name: Install clang-tools binaries
10299
run: clang-tools --install ${{ matrix.version }} --tool clang-format clang-tidy clang-query clang-apply-replacements
103100

104-
- name: Show path of binaries
101+
- name: Show path of clang-tools binaries
105102
shell: bash
106103
run: |
107104
if [ "${{ matrix.version }}" = "15" -o "${{ matrix.version }}" = "16" ] && [ "${{ matrix.os }}" = "windows-latest" ]; then
@@ -116,7 +113,7 @@ jobs:
116113
which "clang-apply-replacements-${{ matrix.version }}"
117114
fi
118115
119-
- name: Check clang-tools on Windows
116+
- name: Check clang-tools binaries on Windows
120117
if: matrix.os == 'windows-latest'
121118
shell: bash
122119
run: |
@@ -135,7 +132,7 @@ jobs:
135132
;;
136133
esac
137134
138-
- name: Check clang-tools on Unix
135+
- name: Check clang-tools binaries on Unix
139136
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
140137
run: |
141138
if [ "${{ matrix.version }}" = "12.0.1" -a "${{ matrix.os }}" = "ubuntu-latest" ]; then
@@ -156,7 +153,7 @@ jobs:
156153
clang-tools-wheel --tool clang-format --version ${{ matrix.version }}
157154
clang-tools-wheel --tool clang-tidy --version ${{ matrix.version }}
158155
159-
- name: Check clang tool wheels
156+
- name: Check clang-tools wheels
160157
if: matrix.version >= 13
161158
shell: bash
162159
run: |

0 commit comments

Comments
 (0)