diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-11-16 21:06:25 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-11-16 21:06:25 -0800 |
commit | 57102d6ac46e3d8caf4755e46e830a10f1d7517c (patch) | |
tree | af2050b5820949c92ac2e31de6528c630660ae42 | |
parent | 3e7076c85bd430d0cfd892d4a596a443b307aea8 (diff) | |
download | pandoc-57102d6ac46e3d8caf4755e46e830a10f1d7517c.tar.gz |
CI: remove setup-haskell for windows.
It is no longer necessary, because ghc, cabal, and stack are
pre-installed.
-rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff5cc4270..4debe1ebe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,10 +104,11 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-haskell@v1.1.3 - with: - enable-stack: true - stack-version: 'latest' + # We should have ghc 8.10, cabal, stack pre-installed + # - uses: actions/setup-haskell@v1.1.3 + # with: + # enable-stack: true + # stack-version: 'latest' # declare/restore cached things # caching doesn't work for scheduled runs yet |