We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d10ff12 commit 6819e82Copy full SHA for 6819e82
1 file changed
.github/workflows/build.yaml
@@ -12,7 +12,10 @@ jobs:
12
architecture: 'x64'
13
# install dependencies
14
- name: CMake build
15
- run: cmake -B build && cmake --build build
+ run: |
16
+ cmake -B build
17
+ cmake --build build
18
+ ctest -V --test-dir build -C Debug
19
20
- name: autoconf build
21
if: ${{ matrix.os == 'ubuntu-latest' }}
@@ -21,3 +24,4 @@ jobs:
24
./configure
22
25
make clean
23
26
make
27
+ make test
0 commit comments