Skip to content

Commit b281421

Browse files
authored
Update c-cpp.yml
1 parent cc7cbaa commit b281421

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/c-cpp.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,21 @@ jobs:
1717
with:
1818
version: 12
1919
platform: x64
20-
- uses: actions/checkout@v3
20+
21+
- name: Check out repository
22+
uses: actions/checkout@v3
23+
2124
- name: Install dependencies
2225
run: sudo apt install -y libaio-dev libtbb2-dev
23-
- name: Config
26+
27+
- name: Config project
2428
run: cmake -B build -S .
25-
- name: Build
29+
30+
- name: Build project
2631
run: cmake --build build -j `nproc`
27-
- name: Test
32+
33+
- name: Test test
2834
run: ctest --test-dir build -j `nproc`
35+
36+
- name: Generate code coverage report
37+
uses: threeal/[email protected]

0 commit comments

Comments
 (0)