Alejandro Angulo
65834d0ff6
The update to the build script makes it so that the entire script exits when a failure is encountered (and returns with that exit code).
14 lines
246 B
YAML
14 lines
246 B
YAML
name: "Build"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v19
|
|
- run: nix build
|
|
- run: nix flake check
|
|
- run: nix run
|