Skip to content

Commit 6819e82

Browse files
committed
build.yaml: enable tests
Execute tests for both CMake and autoconf build systems.
1 parent d10ff12 commit 6819e82

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ jobs:
1212
architecture: 'x64'
1313
# install dependencies
1414
- name: CMake build
15-
run: cmake -B build && cmake --build build
15+
run: |
16+
cmake -B build
17+
cmake --build build
18+
ctest -V --test-dir build -C Debug
1619
1720
- name: autoconf build
1821
if: ${{ matrix.os == 'ubuntu-latest' }}
@@ -21,3 +24,4 @@ jobs:
2124
./configure
2225
make clean
2326
make
27+
make test

0 commit comments

Comments
 (0)