26 lines
613 B
YAML
26 lines
613 B
YAML
on: [push]
|
|
jobs:
|
|
check:
|
|
runs-on: nixos-host
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
# cache not needed since we now run on the host directly
|
|
# - name: Load cached nix store
|
|
# id: cache-nix-store
|
|
# uses: actions/cache/restore@v4
|
|
# with:
|
|
# path: /nix/store
|
|
# key: ${{ runner.os }}-nix-store
|
|
|
|
- name: Check nix flake
|
|
run: |
|
|
nix flake check
|
|
|
|
# - name: Save nix store
|
|
# uses: actions/cache/save@v4
|
|
# with:
|
|
# path: /nix/store
|
|
# key: ${{ steps.cache-nix-store.outputs.cache-primary-key }}
|