diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 21:42:06 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 21:42:06 -0500 |
commit | 54efd6488c27d54b2ff3fc946d489f1b0e047177 (patch) | |
tree | 1a7b0d631cde3517b6bd91c6528606d8fdd76cc1 /.github/workflows/c.yml | |
parent | Bump more GHA files (diff) | |
download | locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.gz locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.bz2 locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.lz locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.xz locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.tar.zst locusts-54efd6488c27d54b2ff3fc946d489f1b0e047177.zip |
Allow CI to run when CI files are edited
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.github/workflows/c.yml')
-rw-r--r-- | .github/workflows/c.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml index 689156d..0952950 100644 --- a/.github/workflows/c.yml +++ b/.github/workflows/c.yml @@ -5,10 +5,12 @@ on: paths: - "**.c" - "**.h" + - ".github/workflows/c.yml" pull_request: paths: - "**.c" - "**.h" + - ".github/workflows/c.yml" jobs: cmake: @@ -41,7 +43,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: "3.x" - name: Install dependencies run: python -m pip install meson ninja - name: Configure Meson @@ -49,4 +51,4 @@ jobs: - name: Build run: ninja -C build - name: Test - run: meson test -C build --print-errorlogs
\ No newline at end of file + run: meson test -C build --print-errorlogs |