Skip to content

Commit 632f0a7

Browse files
authored
[CI fix] don't skip clang v7 and v8 on Linux
1 parent 2aaf13d commit 632f0a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-dev-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,25 +80,25 @@ jobs:
8080
run: sudo apt-get update
8181

8282
- name: Install clang v7
83-
if: matrix.os == 'Linux'
83+
if: runner.os == 'Linux'
8484
uses: cpp-linter/cpp_linter_rs/install-clang-action@main
8585
with:
8686
version: '7'
8787

8888
- name: Collect Coverage for clang v7
89-
if: matrix.os == 'Linux'
89+
if: runner.os == 'Linux'
9090
env:
9191
CLANG_VERSION: '7'
9292
run: just test
9393

9494
- name: Install clang v8
95-
if: matrix.os == 'Linux'
95+
if: runner.os == 'Linux'
9696
uses: cpp-linter/cpp_linter_rs/install-clang-action@main
9797
with:
9898
version: '8'
9999

100100
- name: Collect Coverage for clang v8
101-
if: matrix.os == 'Linux'
101+
if: runner.os == 'Linux'
102102
env:
103103
CLANG_VERSION: '8'
104104
run: just test

0 commit comments

Comments
 (0)