From 9be7de59985818d58e603deb9e4904a49bbc16c4 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Sun, 28 Jan 2024 10:56:20 -0500 Subject: [PATCH] adding sanitized tests --- .github/workflows/ubuntu22-sanitize.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ubuntu22-sanitize.yml diff --git a/.github/workflows/ubuntu22-sanitize.yml b/.github/workflows/ubuntu22-sanitize.yml new file mode 100644 index 0000000..6275961 --- /dev/null +++ b/.github/workflows/ubuntu22-sanitize.yml @@ -0,0 +1,16 @@ +name: Ubuntu 22.04 CI Sanitized (GCC 11) + +on: [push, pull_request] + +jobs: + ubuntu-build: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: Use cmake + run: | + mkdir build && + cd build && + cmake -DFASTFLOAT_TEST=ON -D FASTFLOAT_SANITIZE=ON .. && + cmake --build . && + ctest --output-on-failure \ No newline at end of file