blob: c147cbdc56f58ad6aa6adf7d3d7c98487a450920 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
name: CI
# Trigger the workflow on push or pull request, but only for the master branch
on:
pull_request:
push:
branches: ["ghc-9.2"]
jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
cabal: ["3.6"]
ghc:
- "9.2.1"
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
# GitHub preinstalls recent GHC versions, and haskell/actions/setup uses the
# preinstalled version when possible. However, GitHub's preinstalled GHC does
# not include documentation, and we need documentation to run Haddock tests.
# Therefore, we reinstall GHC to ensure that we have the documentation we
# need.
# TODO: Only reinstall GHC when the docs are actually missing. (If we're
# using a GHC version that is not preinstalled by GitHub, then we will be
# using a GHC installed by ghcup, which should have documentation.)
- name: Reinstall GHC with docs
run: |
ghcup rm ghc ${{ matrix.ghc }}
ghcup install ghc ${{ matrix.ghc }}
- name: Freeze
run: |
cabal freeze
- uses: actions/cache@v2
name: Cache ~/.cabal/store
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
- name: Build
run: |
cabal configure --enable-tests --enable-benchmarks --test-show-details=direct
cabal build all
- name: Test
run: cabal test all
|