Fix CI #78
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: github-action | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.8.2'] | |
os: ['ubuntu-latest', 'macos-latest'] | |
name: Haskell GHC ${{ matrix.ghc }} on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Haskell | |
uses: haskell/actions/setup@v2 | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- name: Cache ~/.cabal/packages, ~/.cabal/store and dist-newstyle | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cabal/packages | |
~/.cabal/store | |
dist-newstyle | |
key: ${{ runner.os }}-${{ matrix.ghc }} | |
- name: install postgres (linux) | |
run: | | |
sudo apt-get update | |
sudo apt-get install postgresql-16 | |
if: matrix.os == 'ubuntu-latest' | |
- name: install postgres (macos) | |
run: | | |
brew update | |
brew install postgresql@14 | |
brew unlink --quiet postgresql@14 | |
brew link --quiet --overwrite postgresql@14 | |
if: matrix.os == 'macos-latest' | |
- name: build all | |
run: cabal build all |