Skip to content

Support ghc 9.2 and recent nixpkgs #33

Support ghc 9.2 and recent nixpkgs

Support ghc 9.2 and recent nixpkgs #33

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
ghc:
- ghc884
- ghc923
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v12
- uses: cachix/cachix-action@v8
with:
name: gi-gtk-declarative
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- name: 'Build and Test Libraries and Examples'
run: nix-build -j2 --arg compiler \"${{ matrix.ghc }}\" --arg doCheck true
- name: 'Build Docs'
run: nix-shell -j2 --arg compiler \"${{ matrix.ghc }}\" --run 'cd docs && mkdocs build'