-
-
Notifications
You must be signed in to change notification settings - Fork 18
49 lines (39 loc) · 1.08 KB
/
haskell.yaml
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
name: Haskell CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
TASTY_TIMEOUT: 20s
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install extra software
run: sudo apt-get install -y colordiff
- uses: actions/checkout@v2
# - uses: actions/setup-haskell@v1
# with:
# ghc-version: '8.10.7'
- name: Cache
uses: actions/cache@v1
env:
cache-name: cache-stack
with:
path: ~/.stack
key:
${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/stack.yaml') }}-${{ hashFiles('**/*.cabal') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/stack.yaml') }}
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Compile and test
run:
stack
test
--pedantic
--ghc-options=-Wincomplete-record-updates
--ghc-options=-Wincomplete-uni-patterns
--ghc-options=-Wredundant-constraints