forked from ZHaskell/z-data
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 1.16 KB
/
winCI.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
on: [push, pull_request]
name: win-ci
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
ghc: ['9.2', '9.4', '9.6']
cabal: ['3.8']
name: Haskell GHC ${{ matrix.ghc }}
env:
CONFIG: "--enable-tests --enable-benchmarks --test-show-details=direct"
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Setup Haskell
uses: haskell/actions/setup@v2
id: setup-haskell-cabal # <--- give it a name for later cache usage
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: |
cabal update
cabal freeze
- uses: actions/cache@v2
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-
- run: |
cabal configure $CONFIG
cabal build
cabal test
- run: |
cabal haddock
cabal check
cabal sdist