27 lines
601 B
YAML
27 lines
601 B
YAML
name: flake
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
tags-ignore:
|
|
- '**'
|
|
|
|
jobs:
|
|
flake:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
- name: Prepare for Nix installation
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y sudo
|
|
- uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
|
|
- name: lint
|
|
run: |
|
|
nix fmt
|
|
git diff --exit-code
|
|
- name: flake check
|
|
run: nix flake check --all-systems
|
|
timeout-minutes: 10
|