2023-10-29 22:52:33 +00:00
|
|
|
name: Flake checks
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Check:
|
|
|
|
runs-on: nix-flakes
|
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v4
|
2023-11-06 21:05:25 +00:00
|
|
|
- name: Prepare cachix
|
|
|
|
uses: https://github.com/cachix/cachix-action@v12
|
|
|
|
with:
|
|
|
|
name: pub-solar
|
2023-10-29 22:52:33 +00:00
|
|
|
- name: Run flake checks
|
|
|
|
run: |
|
|
|
|
nix --print-build-logs --verbose --accept-flake-config flake check
|