From 3cbfaf310f163a3e1b84aa3c346773368769ead8 Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Tue, 21 Nov 2023 17:28:00 +0100 Subject: [PATCH] Only build rules_haskell_nix module There are no tests currently. --- .github/workflows/workflow.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index f12c64b2f6..d6e4af24e0 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -123,13 +123,13 @@ jobs: bazel build //docs:api_html bazel build //docs:guide_html ' - - name: Build & test - rules_haskell_nix + - name: Build - rules_haskell_nix if: matrix.module == 'rules_haskell_nix' run: | nix-shell --arg docTools false --argstr ghcVersion ${{ matrix.ghc }} --pure --run ' set -euo pipefail cd rules_haskell_nix - bazel test //... + bazel build //... ' - name: Build & test - rules_haskell_tests if: matrix.module == 'rules_haskell_tests'