Skip to content

As suggested by -Wdeprecations; use newPool instead. #263

As suggested by -Wdeprecations; use newPool instead.

As suggested by -Wdeprecations; use newPool instead. #263

Workflow file for this run

name: CI
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
ghc9_0:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:11
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: exampledb
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-version: 'latest'
stack-no-global: true
stack-setup-ghc: true
- name: build
run: stack build --fast
- name: test
run: stack test --fast
env:
PG_USER: postgres
PG_HOST: localhost
PG_DATABASE: exampledb
PG_PASSWORD: postgres
PG_PORT: ${{ job.services.postgres.ports['5432'] }}
- name: benchmark
run: stack bench --fast
- name: documentation
run: stack haddock --fast
- name: cache
uses: actions/cache@v2
with:
path: |
".stack-work"
"/root/.stack/"
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
ghc8_10:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:11
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: exampledb
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-version: 'latest'
stack-no-global: true
stack-setup-ghc: true
- name: build
run: stack build --fast --stack-yaml stack-ghc8_10.yaml
- name: test
run: stack test --fast --stack-yaml stack-ghc8_10.yaml
env:
PG_USER: postgres
PG_HOST: localhost
PG_DATABASE: exampledb
PG_PASSWORD: postgres
PG_PORT: ${{ job.services.postgres.ports['5432'] }}
- name: benchmark
run: stack bench --fast --stack-yaml stack-ghc8_10.yaml
- name: documentation
run: stack haddock --fast --stack-yaml stack-ghc8_10.yaml
- name: cache
uses: actions/cache@v2
with:
path: |
".stack-work"
"/root/.stack/"
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
ghc8_8:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:11
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: exampledb
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
enable-stack: true
stack-version: 'latest'
stack-no-global: true
stack-setup-ghc: true
- name: build
run: stack build --fast --stack-yaml stack-ghc8_8.yaml
- name: test
run: stack test --fast --stack-yaml stack-ghc8_8.yaml
env:
PG_USER: postgres
PG_HOST: localhost
PG_DATABASE: exampledb
PG_PASSWORD: postgres
PG_PORT: ${{ job.services.postgres.ports['5432'] }}
- name: benchmark
run: stack bench --fast --stack-yaml stack-ghc8_8.yaml
- name: documentation
run: stack haddock --fast --stack-yaml stack-ghc8_8.yaml
- name: cache
uses: actions/cache@v2
with:
path: |
".stack-work"
"/root/.stack/"
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}