add nix build github workflow

This commit is contained in:
Clément DOUIN 2021-04-28 18:28:44 +02:00
parent 50607e3be2
commit 2922ed5968
No known key found for this signature in database
GPG key ID: 69C9B9CFFDEE2DEF
2 changed files with 23 additions and 0 deletions

22
.github/workflows/nix-build.yaml vendored Normal file
View file

@ -0,0 +1,22 @@
name: nix-build
on:
pull_request:
push:
branches:
- master
jobs:
nix-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: cachix/install-nix-action@v13
with:
install_url: https://nixos-nix-install-tests.cachix.org/serve/lb41az54kzk6j12p81br4bczary7m145/install
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
extra_nix_config: |
experimental-features = nix-command flakes
- run: nix develop -c rustc --version
- run: nix run . -- --version
- run: nix-build

View file

@ -1,6 +1,7 @@
name: tests
on:
pull_request:
push:
branches:
- master