From aa8b13c2c32efdf852338e0534a0e4d5c816eb09 Mon Sep 17 00:00:00 2001 From: DavidMazarro Date: Tue, 1 Oct 2024 10:46:39 +0200 Subject: [PATCH] refactor(ci): removed GHC version matrix Since we now only expose one in the flake --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 229ead28..2a21dd6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,8 +15,6 @@ jobs: - macos-13 # x86_64-darwin - macos-latest # aarch64-darwin - ubuntu-latest # x86_64-linux - ghc: - - ghc966 fail-fast: true runs-on: ${{ matrix.os }} timeout-minutes: 30 @@ -27,9 +25,9 @@ jobs: extra-conf: accept-flake-config = true - uses: DeterminateSystems/magic-nix-cache-action@v7 - name: Compile code ${{ matrix.ghc }} - run: nix build .#test-${{ matrix.ghc }} + run: nix build .#test - name: Run tests ${{ matrix.ghc }} - run: nix run .#test-${{ matrix.ghc }} + run: nix run .#test docker: uses: ./.github/workflows/reusable-docker.yml