Skip to content

Commit cdb4045

Browse files
committed
Cleanup CI
1 parent 7c09c46 commit cdb4045

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,20 @@ jobs:
66
build:
77
runs-on: ${{ matrix.os }}
88
strategy:
9+
fail-fast: false
910
matrix:
10-
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2']
11-
os: ['ubuntu-latest', 'macos-latest']
11+
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8', '9.10', '9.12']
12+
os: ['ubuntu-latest', 'macos-13'] # https://github.com/haskell-actions/setup/issues/77
1213
name: Haskell GHC ${{ matrix.ghc }} on ${{ matrix.os }}
1314
steps:
14-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1516
- name: Setup Haskell
16-
uses: haskell/actions/setup@v2
17+
uses: haskell-actions/setup@v2
1718
with:
1819
ghc-version: ${{ matrix.ghc }}
1920
cabal-version: ${{ matrix.cabal }}
2021
- name: Cache ~/.cabal/packages, ~/.cabal/store and dist-newstyle
21-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2223
with:
2324
path: |
2425
~/.cabal/packages
@@ -28,8 +29,8 @@ jobs:
2829
- name: install postgres (linux)
2930
run: |
3031
sudo apt-get update
31-
sudo apt-get install postgresql-14
32-
export PATH=$PATH:/usr/lib/postgresql/14/bin
32+
sudo apt-get install postgresql-16
33+
export PATH=$PATH:/usr/lib/postgresql/16/bin
3334
which pg_ctl
3435
echo "/usr/lib/postgresql/14/bin" >> $GITHUB_PATH
3536
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)