We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e97c5e0 commit 72b00eaCopy full SHA for 72b00ea
1 file changed
.github/workflows/ci.yml
@@ -45,11 +45,14 @@ jobs:
45
run: apt install -y chrpath
46
47
- name: CMake configure (Debug)
48
- run: cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug
+ run: cmake -B debug -G Ninja . -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON
49
50
- name: Build (Debug)
51
run: ninja -C debug
52
53
+ - name: Run Tests
54
+ run: ./debug/faudio_tests
55
+
56
- name: CMake configure (Release)
57
run: cmake -B release -G Ninja . -DCMAKE_BUILD_TYPE=Release
58
0 commit comments