mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 13:12:10 -08:00
20 lines
461 B
YAML
20 lines
461 B
YAML
|
name: Check flake
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-22.04
|
||
|
permissions:
|
||
|
contents: read
|
||
|
id-token: write
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Check Nix flake Nixpkgs inputs
|
||
|
uses: DeterminateSystems/flake-checker-action@main
|
||
|
- uses: DeterminateSystems/nix-installer-action@main
|
||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||
|
- run: nix flake check --all-systems
|