Added Nix CI

This commit is contained in:
sdiehl
2020-01-04 23:02:48 +00:00
parent e7a8e99f3f
commit af6cabe185
2 changed files with 15 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
name: Nix CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: cachix/install-nix-action@v3
- run: nix-build
+5
View File
@@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {}
}:
pkgs.haskellPackages.developPackage {
root = ./.;
}