We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 452849b commit 0908e00Copy full SHA for 0908e00
1 file changed
.github/workflows/coverage.yml
@@ -40,8 +40,9 @@ jobs:
40
41
- name: Install PySCIPOpt
42
run: |
43
- export CFLAGS="-O0 -ggdb" # disable compiler optimizations for faster builds
44
- python -m pip install . -v
+ export CFLAGS="-O0 -ggdb -Wall -Wextra -Werror" # Optimization mode. More warnings. Warnings as errors.
+ python -m pip install . -v 2>&1 | tee build.log
45
+ grep -i "warning" build.log || true
46
47
- name: Run pyscipopt tests
48
0 commit comments