-
Notifications
You must be signed in to change notification settings - Fork 8
77 lines (64 loc) · 1.77 KB
/
ci.yml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: CI
on:
pull_request:
types: [synchronize, opened, reopened]
push:
schedule:
# additionally run once per week (At 00:00 on Sunday) to maintain cache
- cron: '0 0 * * 0'
workflow_dispatch:
jobs:
build:
name: ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# We must always use the latest version of cabal because
# otherwise ghc-paths, which is a dependency of doctest,
# can't be configured.
cabal: ["3.10"]
ghc:
# Can't do earlier than 8.10 because we use unlifted newtypes
# If we're willing to fudge that then maybe we can extend
# the range of GHCs we support
# - "8.6.5"
# - "8.8.3"
- "8.10.7"
- "9.0.2"
- "9.2.4"
- "9.4.7"
- "9.6.3"
- "9.8.1"
- "9.10.1"
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/[email protected]
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Configure
run: |
cabal configure --enable-tests --enable-benchmarks --enable-documentation --test-show-details=direct --write-ghc-environment-files=always
- name: Freeze
run: |
cabal freeze
- uses: actions/cache@v3
name: Cache ~/.cabal/3tore
with:
path: ~/.cabal/store
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
- name: Install dependencies
run: |
cabal build all --only-dependencies
- name: Build
run: |
cabal build all
# - name: Test
# run: |
# cabal test all
# - name: Documentation
# run: |
# cabal haddock all