-
Notifications
You must be signed in to change notification settings - Fork 1
293 lines (234 loc) ยท 7.53 KB
/
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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
name: Continuous Integratio
on:
# Build every pull request, to check for regressions.
pull_request:
# Build when a PR is merged, to update the README's CI badge.
push:
# branches: [main]
# Build once a month, to detect missing upper bounds.
schedule:
- cron: '0 0 1 * *'
env:
STAN_USE_DEFAULT_CONFIG: True
defaults:
run:
shell: bash
jobs:
# Check that the project does not have detectable dead code
weeder:
name: Dead Code Check
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
name: Setup Haskell
with:
cabal-version: latest
ghc-version: 8.10.4
- run: make dead-code-check-setup
- uses: actions/cache@v2
name: caching dead code check
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-dead-code-${{ hashFiles('cabal.project.freeze') }}
- run: make dead-code-check-deploy
# Check that the project has complete documetation coverage
haddock:
name: Documentation Check
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
name: Setup Haskell
with:
cabal-version: latest
ghc-version: latest
- run: make documentation-check-setup
- uses: actions/cache@v2
name: caching documetation check
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-documetation-${{ hashFiles('cabal.project.freeze') }}
- run: make documentation-check-deploy
# Run Stylish Haskell to check for errant code formatting
formatter:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
- run: make formatting-check
# Run HLint to check for code improvements
hlint:
name: HLint Check
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
- run: make hlint-check
# Check that the project builds with the specified lower bounds.
lower-bounds:
name: Lower Bounds Check
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
name: Setup Haskell
with:
cabal-version: latest
ghc-version: 8.8.4
- run: make lower-bounds-check-setup
- uses: actions/cache@v2
name: caching lower bounds check
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-lower-bounds-${{ hashFiles('cabal.project.freeze') }}
- run: make lower-bounds-check-deploy
# Run Stylish Haskell to check for errant code formatting
misspellings:
name: Spelling Check
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
- run: make spelling-check
# Check that the project has no anti-patterns
stan:
name: Static Analysis Check
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
name: Setup Haskell
with:
cabal-version: latest
ghc-version: 8.10.4
- run: make static-analysis-check-setup
- uses: actions/cache@v2
name: caching static analysis check
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-static-analysis-${{ hashFiles('cabal.project.freeze') }}
- run: make static-analysis-check-deploy
# Check that the project builds with the specified lower bounds.
file-tests:
name: File Parser Tests
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
name: Setup Haskell
with:
cabal-version: latest
ghc-version: latest
- run: make file-tests-setup
- uses: actions/cache@v2
name: caching file tests
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-file-parser-tests-${{ hashFiles('cabal.project.freeze') }}
- run: make file-tests-verification
# Check that the project builds with the specified lower bounds.
integration-tests:
name: Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
name: Setup Haskell
with:
cabal-version: latest
ghc-version: 8.10.4
- run: cabal update
- run: cabal clean
- run: cabal configure --enable-tests --with-compiler=ghc
- run: cabal freeze --enable-tests
- uses: actions/cache@v2
name: caching integration tests
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-integration-tests-${{ hashFiles('cabal.project.freeze') }}
- run: cabal clean
- run: cabal install exe:pcg --overwrite-policy=always --installdir=./bin
- run: cabal run integration-tests
# Check that the project builds with the specified lower bounds.
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: haskell/actions/[email protected]
name: Setup Haskell
with:
cabal-version: latest
ghc-version: latest
- run: make unit-tests-setup
- uses: actions/cache@v2
name: caching unit tests
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-unit-tests-${{ hashFiles('cabal.project.freeze') }}
- run: make unit-tests-verification
# Cabal build matrix
cabal-build-matrix:
name: GHC-${{ matrix.ghc }} Cabal-${{matrix.cabal}} ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
ghc: [ '8.8.4', '8.10.4', '9.0.1' ]
cabal: [ '3.2', '3.4' ]
os: [ ubuntu-latest ] # , macOS-latest ]
include:
- ghc: latest
cabal: latest
os: ubuntu-latest
experimental: true
steps:
- uses: actions/[email protected]
- name: Setup Haskell
uses: haskell/actions/[email protected]
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- run: gcc --version
- run: g++ --version
- run: ghc --version
- run: make compilation-check-setup
- uses: actions/cache@v2
name: windows caching
with:
path: |
c:\sr
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
# restore keys is a fall back when the freeze plan is different
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-
if: matrix.os == 'windows-latest'
- uses: actions/cache@v2
name: ubuntu-linux and osx caching
with:
path: |
~/.cabal/store
dist-newstyle
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
# restore keys is a fall back when the freeze plan is different
restore-keys: |
${{ runner.os }}-${{ matrix.ghc }}-
if: matrix.os != 'windows-latest'
- run: make compilation-check-deploy