Skip to content

Update all dependency commit hashes to latest #12

Update all dependency commit hashes to latest

Update all dependency commit hashes to latest #12

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Check formatting
run: nix fmt -- --ci
- name: Cabal update
run: nix develop --command cabal update
- name: Build
run: nix develop --command cabal build --allow-newer --ghc-options="-Wall -Werror"
- name: Tests
run: nix develop --command cabal test --allow-newer --ghc-options="-Wall -Werror"