diff options
| author | Inari Listenmaa <inari.listenmaa@gmail.com> | 2023-09-13 08:24:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-13 08:24:07 +0200 |
| commit | 318b710a14e3bcbfb8386e4e357d4ed64b1a0ae1 (patch) | |
| tree | 9a3a2710a18225713c89ba27eab2384d47995d8b /.github | |
| parent | 096b36c21d9657d1dee93638b436dc7bb35af439 (diff) | |
| parent | b90666455efd3b83345ad4b77eac4b64373e4c83 (diff) | |
Merge pull request #160 from anka-213/prettier-syntax-errors
Improve syntax error messages
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build-all-versions.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-all-versions.yml b/.github/workflows/build-all-versions.yml index ecbcfff99..f6f1b82a7 100644 --- a/.github/workflows/build-all-versions.yml +++ b/.github/workflows/build-all-versions.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v2 if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master' - - uses: haskell/actions/setup@v1.2.9 + - uses: haskell/actions/setup@v2 id: setup-haskell-cabal name: Setup Haskell with: @@ -62,7 +62,7 @@ jobs: stack: name: stack / ghc ${{ matrix.ghc }} - runs-on: ubuntu-latest + runs-on: ${{ matrix.ghc == '7.10.3' && 'ubuntu-20.04' || 'ubuntu-latest' }} strategy: matrix: stack: ["latest"] @@ -73,7 +73,7 @@ jobs: - uses: actions/checkout@v2 if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master' - - uses: haskell/actions/setup@v1.2.9 + - uses: haskell/actions/setup@v2 name: Setup Haskell Stack with: ghc-version: ${{ matrix.ghc }} |
