configuration.nix/.github/workflows/check.yml

30 lines
768 B
YAML
Raw Normal View History

2024-01-14 17:59:46 +01:00
name: Check flake
on:
push:
path:
- ./**.nix
- ./flake.lock
2024-01-14 17:59:46 +01:00
pull_request:
schedule:
- cron: 5 4 * * 5 # At 04:05 on Friday.
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@v9
- uses: DeterminateSystems/magic-nix-cache-action@v2
- name: Run `nix flake check`
run: nix flake check
lockfile:
needs: check
if: ${{ github.event_name == 'schedule' }} # only run when scheduled
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@v9
- uses: DeterminateSystems/update-flake-lock@v20
- name: Run `nix flake check`
run: nix flake check