File tree 2 files changed +49
-30
lines changed
2 files changed +49
-30
lines changed Original file line number Diff line number Diff line change
1
+ name : Ci
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ tags :
8
+ - " *"
9
+ pull_request : {}
10
+
11
+ defaults :
12
+ run :
13
+ shell : bash
14
+
15
+ jobs :
16
+ all :
17
+ name : All
18
+ runs-on : ubuntu-latest
19
+ strategy :
20
+ matrix :
21
+ stack_yaml :
22
+ - stack-ghc-7.10.yaml
23
+ - stack-ghc-8.0.yaml
24
+ - stack-ghc-8.2.yaml
25
+ - stack-ghc-8.4.yaml
26
+ - stack.yaml
27
+ steps :
28
+ - name : Set STACK_YAML
29
+ run : echo STACK_YAML=${{ matrix.stack_yaml }} >> $GITHUB_ENV
30
+
31
+ - uses : actions/checkout@v2
32
+
33
+ - name : Setup
34
+ run : stack setup
35
+
36
+ - name : Info
37
+ run : |
38
+ stack --version
39
+ stack ghc -- --version
40
+ cat $STACK_YAML | grep resolver
41
+
42
+ - name : Install Dependencies
43
+ run : stack build --test --only-dependencies --haddock-deps
44
+
45
+ - name : Test
46
+ run : stack test --ghc-options=-Werror
47
+
48
+ - name : Docs
49
+ run : stack haddock
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments