mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-03-01 04:40:56 +01:00
22 lines
399 B
YAML
22 lines
399 B
YAML
|
name: Check
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
check-flake:
|
||
|
name: Nixpkgs Formatting and Flake check
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Install Nix
|
||
|
uses: cachix/install-nix-action@v18
|
||
|
with:
|
||
|
extra_nix_config: |
|
||
|
experimental-features = nix-command flakes
|
||
|
- run: nix flake check
|