Create check.yml

This commit is contained in:
Rouven Seifert 2023-01-10 11:41:12 +01:00 committed by GitHub
parent 89c992c0d9
commit f1477dc24f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/check.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Check
on:
push:
branches:
- main
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 shell nixpkgs#nixpkgs-fmt -c nixpkgs-fmt . --check
- run: nix flake check