From f52337ccdc7de9221dc31e12ff646e67d6f1d5c2 Mon Sep 17 00:00:00 2001 From: Nikolay Yakimov Date: Mon, 13 Jul 2020 19:28:19 +0300 Subject: [PATCH] [CI] Use setup-haskell action --- .github/workflows/ci.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1c5e9165..1617672ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,16 +61,10 @@ jobs: # need to install older cabal/ghc versions from ppa repository - name: Install recent cabal/ghc - run: | - if [[ ! -d /opt/ghc/${{ matrix.versions.ghc }} ]] - then - sudo add-apt-repository ppa:hvr/ghc - sudo apt-get update - sudo apt-get install ghc-${{ matrix.versions.ghc }} cabal-install-${{ matrix.versions.cabal }} - fi - # Use a GitHub workflow command to add folders to PATH. - echo "::add-path::/opt/ghc/${{ matrix.versions.ghc }}/bin" - echo "::add-path::/opt/cabal/${{ matrix.versions.cabal }}/bin" + uses: actions/setup-haskell@v1.1 + with: + ghc-version: ${{ matrix.versions.ghc }} + cabal-version: ${{ matrix.versions.cabal }} # declare/restore cached things # caching doesn't work for scheduled runs yet