resume/.github/workflows/build.yml
Alejandro Angulo 65834d0ff6
Run the flake as part of CI
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).
2023-02-12 11:06:41 -08:00

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