diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 16:09:19 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 16:21:41 -0500 |
commit | e7749461bfa5abc00b946f844a85b25b6c12ec85 (patch) | |
tree | 254f2c17d0d231b8512a6016665a3a89ce477b80 /.github/workflows/c.yml | |
parent | Unleash the locust CI (diff) | |
download | locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.gz locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.bz2 locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.lz locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.xz locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.tar.zst locusts-e7749461bfa5abc00b946f844a85b25b6c12ec85.zip |
Attempt to fix
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
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 |