diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-06-16 13:15:13 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-06-16 13:15:13 -0400 |
| commit | ea2e435973fe2ceb1298812db53d5aaecf2318fd (patch) | |
| tree | dc9fe27dbdeb2de2d434047fdd3eab3cc2953616 /.github/workflows/build.yml | |
| parent | e51727b56cd0078d16164fc7a14664c885ce61f7 (diff) | |
Make CI fail on warning
This should help catch missing return statements in fully matched TUs.
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b21002ba..01ecc0f1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: run: cp -R /orig/${{matrix.version}} orig - name: Build run: | - python configure.py --version ${{matrix.version}} --compilers /compilers + python configure.py --version ${{matrix.version}} --compilers /compilers --warn error ninja - name: Upload progress if: github.ref == 'refs/heads/main' |
