fix: support for GHC 9.10 api #168
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: Complete CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
nix_build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cachix/install-nix-action@v21 | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: guibou | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
# Builds cabal (nix) | |
- name: Build with all supported GHC | |
run: nix build .#pyf_all | |
stack_build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Stack | |
run: sudo apt-get install haskell-stack | |
# Build stack | |
- name: Stack 9.6 | |
run: stack --resolver nightly-2023-10-24 test | |
- name: Stack 9.4 | |
run: stack --resolver lts-21.17 test | |
- name: Stack 9.2 | |
run: stack --resolver lts-20.26 test | |
- name: Stack 9.0 | |
run: stack --resolver lts-19.1 test | |
- name: Stack 8.10 | |
run: stack --resolver lts-17.1 test | |
- name: Stack 8.8 | |
run: stack --resolver lts-16.31 test | |
- name: Stack 8.6 | |
run: stack --resolver lts-14.27 test |