diff options
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 |