Skip to content

Commit 0908e00

Browse files
committed
More warnings, warnings as errors
1 parent 452849b commit 0908e00

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ jobs:
4040
4141
- name: Install PySCIPOpt
4242
run: |
43-
export CFLAGS="-O0 -ggdb" # disable compiler optimizations for faster builds
44-
python -m pip install . -v
43+
export CFLAGS="-O0 -ggdb -Wall -Wextra -Werror" # Optimization mode. More warnings. Warnings as errors.
44+
python -m pip install . -v 2>&1 | tee build.log
45+
grep -i "warning" build.log || true
4546
4647
- name: Run pyscipopt tests
4748
run: |

0 commit comments

Comments
 (0)