2021-02-11 20:55:45 +01:00
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2.3.4
|
2021-06-29 10:02:43 +02:00
|
|
|
- uses: cachix/install-nix-action@v13
|
|
|
|
with:
|
|
|
|
install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.4pre20210604_8e6ee1b/install
|
|
|
|
extra_nix_config: |
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
|
2021-02-11 20:55:45 +01:00
|
|
|
- run: nix-build
|
|
|
|
tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
- uses: cachix/install-nix-action@v12
|
|
|
|
- run: nix-shell dev-shell.nix --run "cargo test"
|