We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95db08c commit f9df3b9Copy full SHA for f9df3b9
1 file changed
.github/workflows/build.yml
@@ -1,5 +1,9 @@
1
name: build
2
3
+concurrency:
4
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
5
+ cancel-in-progress: true
6
+
7
on:
8
push:
9
branches:
@@ -18,28 +22,19 @@ jobs:
18
22
strategy:
19
23
matrix:
20
24
os:
21
- - ubuntu-20.04
25
+ - ubuntu-latest
26
ghc:
- - '7.10'
- - '8.0'
- - '8.2'
- - '8.4'
27
- - '8.6'
28
- - '8.8'
29
- - '8.10'
30
- - '9.0'
31
- - '9.2'
32
- - '9.4'
33
- - '9.6'
34
- '9.8'
+ - '9.10'
+ - '9.12'
35
include:
36
- os: macos-latest
37
- ghc: latest
+ ghc: system
38
- os: windows-latest
39
40
41
steps:
42
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
43
- uses: hspec/setup-haskell@v1
44
with:
45
ghc-version: ${{ matrix.ghc }}
0 commit comments