mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-13 00:52:54 +00:00
Adding haskell.nix based default and shell.nix (#141)
Co-authored-by: Ben Ford <ben@perurbis.com>
This commit is contained in:
parent
51263e2fba
commit
f6f388c8da
7 changed files with 121 additions and 7 deletions
18
.github/workflows/ci.yml
vendored
Normal file
18
.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: "Nix CI"
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.1
|
||||
- uses: cachix/install-nix-action@v10
|
||||
with:
|
||||
skip_adding_nixpkgs_channel: true
|
||||
- uses: cachix/cachix-action@v6
|
||||
with:
|
||||
name: cdodev
|
||||
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
||||
- run: cachix use iohk && cachix use cdodev
|
||||
- run: nix-build
|
||||
Loading…
Reference in a new issue