File tree Expand file tree Collapse file tree 5 files changed +13
-20
lines changed Expand file tree Collapse file tree 5 files changed +13
-20
lines changed Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- name : Checkout sources
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
14
14
- name : Check for whitespace violations
15
15
uses : andreasabel/fix-whitespace-action@v1
Original file line number Diff line number Diff line change 3
3
push :
4
4
branches :
5
5
- master
6
- - ci-*
7
- - release-*
8
6
pull_request :
9
7
branches :
10
8
- master
11
- - ci-*
12
- - release-*
13
9
14
10
defaults :
15
11
run :
34
30
# - "9.0.2"
35
31
# - "9.2.8"
36
32
- " 9.4.8"
37
- - " 9.6.3 "
33
+ - " 9.6.4 "
38
34
- " 9.8.1"
39
35
include :
40
36
- ghc : " 9.8.1"
52
48
cabal-version : " latest"
53
49
cabal-update : true
54
50
55
- - uses : actions/cache@v3
51
+ - uses : actions/cache@v4
56
52
name : Cache cabal stuff
57
53
with :
58
54
path : |
84
80
- name : Test
85
81
run : |
86
82
cd alex-*/
87
- export ALEX=$(cabal list-bin alex)
83
+ ALEX="$(cabal list-bin alex)"
84
+ export ALEX
88
85
cabal run --enable-tests alex:test:tests
89
86
90
87
- name : Haddock
Original file line number Diff line number Diff line change 8
8
#
9
9
# For more information, see https://github.com/andreasabel/haskell-ci
10
10
#
11
- # version: 0.17.20231112
11
+ # version: 0.17.20240127
12
12
#
13
- # REGENDATA ("0.17.20231112 ",["github","alex.cabal"])
13
+ # REGENDATA ("0.17.20240127 ",["github","alex.cabal"])
14
14
#
15
15
name : Haskell-CI
16
16
on :
17
17
push :
18
18
branches :
19
19
- master
20
- - ci-*
21
- - release-*
22
20
pull_request :
23
21
branches :
24
22
- master
25
- - ci-*
26
- - release-*
27
23
jobs :
28
24
linux :
29
25
name : Haskell-CI - Linux - ${{ matrix.compiler }}
41
37
compilerVersion : 9.8.1
42
38
setup-method : ghcup
43
39
allow-failure : false
44
- - compiler : ghc-9.6.3
40
+ - compiler : ghc-9.6.4
45
41
compilerKind : ghc
46
- compilerVersion : 9.6.3
42
+ compilerVersion : 9.6.4
47
43
setup-method : ghcup
48
44
allow-failure : false
49
45
- compiler : ghc-9.4.8
@@ -225,7 +221,7 @@ jobs:
225
221
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
226
222
cabal-plan
227
223
- name : restore cache
228
- uses : actions/cache/restore@v3
224
+ uses : actions/cache/restore@v4
229
225
with :
230
226
key : ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
231
227
path : ~/.cabal/store
@@ -261,7 +257,7 @@ jobs:
261
257
rm -f cabal.project.local
262
258
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
263
259
- name : save cache
264
- uses : actions/cache/save@v3
260
+ uses : actions/cache/save@v4
265
261
if : always()
266
262
with :
267
263
key : ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ build-type: Simple
23
23
24
24
tested-with :
25
25
GHC == 9.8.1
26
- GHC == 9.6.3
26
+ GHC == 9.6.4
27
27
GHC == 9.4.8
28
28
GHC == 9.2.8
29
29
GHC == 9.0.2
Original file line number Diff line number Diff line change 1
- branches: master ci-* release-*
1
+ branches: master
2
2
3
3
-- -- For bootstrapping:
4
4
-- apt: alex happy
You can’t perform that action at this time.
0 commit comments