From 39cc0085c9e1e75648ceb29bb51763989992608b Mon Sep 17 00:00:00 2001 From: William Rusnack Date: Mon, 8 Jul 2024 10:09:46 -0400 Subject: [PATCH] use haskell-actions --- .github/workflows/tests.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4eccc7b6..470ab168 100755 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,8 +34,13 @@ jobs: steps: - name: Clone project uses: actions/checkout@v2 - - name: Install Stack - run: stack --version || curl -sSL https://get.haskellstack.org/ | sh + - name: Setup Haskell + uses: haskell-actions/setup@v2.7.5 + with: + enable-stack: true + stack-version: 'latest' + stack-no-global: true + cabal-update: false - name: Build and run tests shell: bash run: |