22 lines
423 B
YAML
22 lines
423 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest-amd64
|
|
|
|
uses: daniel/reusable-workflows/.github/workflows/nix-flake-check.yaml@main
|
|
with:
|
|
runner: ubuntu-latest-amd64
|
|
secrets: inherit
|
|
|
|
build:
|
|
runs-on: ubuntu-latest-amd64
|
|
|
|
needs: check
|
|
|
|
uses: daniel/reusable-workflows/.github/workflows/nix-flake-build.yaml@main
|
|
with:
|
|
runner: ubuntu-latest-amd64
|
|
secrets: inherit
|