Skip to content

Commit acfbc06

Browse files
authored
Update c-cpp.yml
1 parent ff0ffb9 commit acfbc06

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/c-cpp.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: cmake
17-
run: mkdir build && cd build && cmake ..
1816
- name: make
19-
run: make
20-
- name: make test
21-
run: make test
17+
run: mkdir build && cd build && cmake .. && make
18+
19+
testing:
20+
21+
runs-on: ubuntu-latest
22+
23+
steps:
24+
- uses: actions/checkout@v4
25+
- name: make
26+
run: mkdir build && cd build && cmake .. && make && make test
27+

0 commit comments

Comments
 (0)