summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2024-06-16 13:15:13 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2024-06-16 13:15:13 -0400
commitea2e435973fe2ceb1298812db53d5aaecf2318fd (patch)
treedc9fe27dbdeb2de2d434047fdd3eab3cc2953616 /.github/workflows
parente51727b56cd0078d16164fc7a14664c885ce61f7 (diff)
Make CI fail on warning
This should help catch missing return statements in fully matched TUs.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml2
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'