From c735f7ab50558e81527d91d2aa9b6a4a23fb6d48 Mon Sep 17 00:00:00 2001 From: Laurent Rene de Cotret Date: Wed, 21 Aug 2024 11:23:26 -0400 Subject: [PATCH] Test with and without `binary` flag --- .github/workflows/ci.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 49b80f2..c646dc9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,10 +17,9 @@ jobs: - "9.6.6" - "9.8.2" - "9.10.1" - flags: + constraints: - "" # base case - # Only activate after #224 has landed - # - "+binary" + - "--constraint=\"dimensional +binary\"" steps: - uses: actions/checkout@v4 @@ -35,7 +34,7 @@ jobs: - name: Generate freeze file run: | cabal update - cabal configure --disable-optimization --flags="${{ matrix.flags }}" --enable-tests + cabal configure --disable-optimization ${{ matrix.constraints }} --enable-tests cabal freeze - name: Cache cabal work