This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
forked from ameingast/postgresql-simple-migration
-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (59 loc) · 1.67 KB
/
haskell-ci.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
name: CI
on:
pull_request:
push:
branches: [master]
jobs:
build-and-test:
services:
postgres:
image: postgres:15-alpine
env:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_USER: postgres
POSTGRES_DB: test
ports:
- 5432:5432
# Set health checks to wait until postgres has started
# needed because the postgres container does not provide a healthcheck
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
cabal:
- 3.6
ghc:
- 8.10.7
- 9.0.2
- 9.2.4
steps:
- name: Check out repository
uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Configure
run: cabal configure --enable-tests --enable-benchmarks --test-show-details=direct
- name: Freeze
run: cabal freeze
- name: Cache ~/.cabal/store
uses: actions/cache@v3
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
- name: Install dependencies
run: cabal build all --only-dependencies
- name: Build
run: cabal build all
- name: Test
run: cabal test all