ci fortran: add case where buildtype=release and warning_level=3

this can find issues with non-default build options
This commit is contained in:
Michael Hirsch, Ph.D 2019-12-12 13:41:34 -05:00 committed by Jussi Pakkanen
parent 0bf8862beb
commit 9371965132
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1 @@
end program

View File

@ -0,0 +1,5 @@
# checks for unexpected behavior on non-default buildtype and warning_level
project('build type Fortran', 'fortran',
default_options: ['buildtype=release', 'warning_level=3'])
executable('main', 'main.f90')