mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
22 lines
470 B
YAML
22 lines
470 B
YAML
name: "Check flake"
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "**.nix"
|
|
- "**.lock"
|
|
- ".github/workflows/check.yml"
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v22
|
|
|
|
- name: Check Nix flake Nixpkgs inputs
|
|
uses: DeterminateSystems/flake-checker-action@main
|
|
env:
|
|
FLAKE_CHECKER_NO_TELEMETRY: true
|