Test with and without dtoa in CI

This commit is contained in:
Petri Lehtinen 2024-03-15 22:45:37 +02:00
parent 9699de8600
commit 9d3abab610

View file

@ -18,6 +18,7 @@ jobs:
matrix:
os: ["ubuntu-latest", "macos-latest"]
cc: ["gcc", "clang"]
dtoa: ["yes", "no"]
runs-on: ${{ matrix.os }}
@ -29,7 +30,7 @@ jobs:
- env:
CC: ${{ matrix.cc }}
CFLAGS: -Werror
run: ./configure
run: ./configure --enable-dtoa=${{ matrix.dtoa }}
- run: make check
cmake: