aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/cmake.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/cmake.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 37f112f..66eceac 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -13,7 +13,7 @@ on:
jobs:
cmake:
name: CMake Builds
- runs-on: $ {{ matrix.os }}
+ runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
@@ -25,3 +25,5 @@ jobs:
run: cmake -B build -S .
- name: Build
run: cmake --build build
+ - name: Test
+ run: ctest --test-dir build --output-on-failure