We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff0ffb9 commit acfbc06Copy full SHA for acfbc06
1 file changed
.github/workflows/c-cpp.yml
@@ -13,9 +13,15 @@ jobs:
13
14
steps:
15
- uses: actions/checkout@v4
16
- - name: cmake
17
- run: mkdir build && cd build && cmake ..
18
- name: make
19
- run: make
20
- - name: make test
21
- run: make test
+ run: mkdir build && cd build && cmake .. && make
+
+ testing:
+ 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