-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (35 loc) · 1003 Bytes
/
haskell.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
name: Run Tests
on:
push:
branches: main
pull_request:
branches: main
permissions:
contents: read
jobs:
build:
name: GHC ${{ matrix.ghc-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
ghc-version: ['9.4.7', '9.6.3', '9.8.1', '9.10.1']
steps:
- uses: actions/checkout@v2
- name: Set up GHC ${{ matrix.ghc-version }}
uses: haskell-actions/setup@v2
id: setup
with:
ghc-version: ${{ matrix.ghc-version }}
cabal-version: 'latest'
cabal-update: true
- name: Configure the build
run: |
cabal configure --enable-tests
cabal build --dry-run
- name: Install dependencies
run: cabal build all --only-dependencies --enable-tests
- name: Build
run: cabal build all --ghc-options="-Werror" --enable-tests
- name: Run tests
run: cabal test all --ghc-options="-Werror"