From 32ca2e322506e42cb627f65552e896c93dea7a55 Mon Sep 17 00:00:00 2001 From: Marco Zocca Date: Sun, 2 Jul 2023 16:25:54 +0200 Subject: [PATCH] try adding caching to CI --- .github/workflows/haskell.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 7618e89..c8e7182 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -43,10 +43,10 @@ jobs: - name: Get dependencies run: stack build --resolver=${{ matrix.resolver }} --only-dependencies --test --bench --no-run-tests --no-run-benchmarks - - name: Build code + - name: Build run: stack build --resolver=${{ matrix.resolver }} --test --bench --no-run-tests --no-run-benchmarks - - name: Test code + - name: Test run: stack test --resolver=${{ matrix.resolver }} # - name: Setup compiler, build and test all packages