improvement(ci): Now github should also check if the nix dev-env/build breaks

This commit is contained in:
x10an14 2023-08-30 18:26:11 +02:00
parent 2d1da2ab57
commit 5f1a63265c
No known key found for this signature in database
GPG key ID: 999146D53BA5A65E

24
.github/workflows/nix.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Ensure nix-dev environment still builds correctly
on:
# On any push or PR
push:
pull_request:
jobs:
nix-dev-shell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nixbuild/nix-quick-install-action@v25
- run: nix build --version
- run: nix build .#devShell
nix-build-and-run-rustlings:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: nixbuild/nix-quick-install-action@v25
- run: nix build --version
- name: Build & Run
run: nix run .#rustlings -- --help