File tree 6 files changed +31
-2
lines changed 6 files changed +31
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Bootstrap
2
2
3
+ # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
4
+ concurrency :
5
+ group : ${{ github.head_ref }}-${{ github.workflow }}
6
+ cancel-in-progress : true
7
+
3
8
on :
4
9
push :
5
10
branches :
Original file line number Diff line number Diff line change 1
1
name : Linux
2
2
3
+ # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
4
+ concurrency :
5
+ group : ${{ github.head_ref }}-${{ github.workflow }}
6
+ cancel-in-progress : true
7
+
3
8
on :
4
9
push :
5
10
branches :
@@ -123,7 +128,7 @@ jobs:
123
128
- uses : actions/checkout@v2
124
129
125
130
- uses : haskell/actions/setup@v1
126
- id : setup-haskell
131
+ id : setup-haskell-extra
127
132
with :
128
133
ghc-version : ${{ matrix.extra-ghc }}
129
134
cabal-version : latest # default, keeping for visibility
Original file line number Diff line number Diff line change 1
1
name : MacOS
2
2
3
+ # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
4
+ concurrency :
5
+ group : ${{ github.head_ref }}-${{ github.workflow }}
6
+ cancel-in-progress : true
7
+
3
8
on :
4
9
push :
5
10
branches :
@@ -111,4 +116,3 @@ jobs:
111
116
- name : Validate cli-suite
112
117
if : matrix.cli == true
113
118
run : sh validate.sh -j 2 -w ghc-${{ matrix.ghc }} -v ${{ matrix.flags }} -s cli-suite
114
-
Original file line number Diff line number Diff line change 1
1
name : Quick jobs
2
2
3
+ # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
4
+ concurrency :
5
+ group : ${{ github.head_ref }}-${{ github.workflow }}
6
+ cancel-in-progress : true
7
+
3
8
on :
4
9
push :
5
10
branches :
Original file line number Diff line number Diff line change 2
2
3
3
name : Users guide
4
4
5
+ # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
6
+ concurrency :
7
+ group : ${{ github.head_ref }}-${{ github.workflow }}
8
+ cancel-in-progress : true
9
+
5
10
on :
6
11
push :
7
12
branches :
Original file line number Diff line number Diff line change 1
1
name : Windows
2
2
3
+ # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
4
+ concurrency :
5
+ group : ${{ github.head_ref }}-${{ github.workflow }}
6
+ cancel-in-progress : true
7
+
3
8
on :
4
9
push :
5
10
branches :
You can’t perform that action at this time.
0 commit comments