.github: Add job to test flake-compat build

This commit is contained in:
Zhaofeng Li 2021-09-19 22:03:39 -07:00
parent 6f5d7aa29b
commit 1d6ec530ca

View file

@ -9,14 +9,26 @@ jobs:
- uses: actions/checkout@v2.3.4
- uses: cachix/install-nix-action@v13
with:
install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.4pre20210604_8e6ee1b/install
install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.4pre20210823_af94b54/install
extra_nix_config: |
experimental-features = nix-command flakes
- run: nix flake check
- run: nix build
build-2.3:
- uses: actions/checkout@v2.3.4
- uses: cachix/install-nix-action@v13
- run: nix-build
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: cachix/install-nix-action@v12
- uses: cachix/install-nix-action@v13
with:
install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.4pre20210823_af94b54/install
extra_nix_config: |
experimental-features = nix-command flakes
- run: nix-shell --run "cargo test"