diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ea18ee..66eab79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -186,9 +186,9 @@ jobs: - name: Build env: CC: ${{ matrix.compiler }} - BuildFlag: ${{ matrix.coverage && '-Db_coverage=true' || '--buildtype=release -Dprefer_static=true'}} + BuildFlags: ${{ matrix.coverage && '-Db_coverage=true' || '--buildtype=release -Dprefer_static=true'}} run: | - meson setup build $BuildFlag + meson setup build ${{ env.BuildFlags }} meson compile --verbose -C build - name: Test diff --git a/meson.build b/meson.build index e169238..53adb8f 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('astroterm', 'c', - version: '1.0.6', + version: '1.0.7', default_options : ['warning_level=3', 'buildtype=debug'], meson_version: '>=1.4.0', )