diff options
Diffstat (limited to '.github/workflows/c.yml')
-rw-r--r-- | .github/workflows/c.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml index 417dac6..689156d 100644 --- a/.github/workflows/c.yml +++ b/.github/workflows/c.yml @@ -2,9 +2,9 @@ name: C on: push: - # paths: - # - "**.c" - # - "**.h" + paths: + - "**.c" + - "**.h" pull_request: paths: - "**.c" @@ -26,7 +26,7 @@ jobs: - name: Build run: cmake --build build - name: Test - run: ctest --test-dir build --output-on-failure + run: ctest --test-dir build --output-on-failure -C Debug meson: name: Meson Builds |