forked from aylac.top/nixcfg
this repo has no description
at main 474 B view raw
1concurrency: 2 cancel-in-progress: true 3 group: ${{ github.workflow }}-${{ github.ref }} 4jobs: 5 check-flake: 6 runs-on: ubuntu-latest 7 steps: 8 - uses: actions/checkout@main 9 with: 10 fetch-depth: 1 11 - uses: DeterminateSystems/nix-installer-action@main 12 - name: Check flake evaluation 13 run: nix -Lv flake check --all-systems 14name: check-nix 15'on': 16 push: 17 paths-ignore: 18 - '**/*.md' 19 - .github/** 20 - _img/** 21 workflow_dispatch: {}