2024-04-01 20:34:37 +01:00
|
|
|
name: flake
|
|
|
|
|
2024-04-07 16:18:03 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
tags-ignore:
|
|
|
|
- '**'
|
2024-04-01 20:34:37 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
flake:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-05-10 00:00:45 +01:00
|
|
|
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
|
2024-04-01 20:34:37 +01:00
|
|
|
- name: Prepare for Nix installation
|
|
|
|
run: |
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y sudo
|
2024-04-23 20:58:42 +01:00
|
|
|
- uses: cachix/install-nix-action@8887e596b4ee1134dae06b98d573bd674693f47c # v26
|
2024-04-01 20:34:37 +01:00
|
|
|
- name: lint
|
2024-04-22 22:31:10 +01:00
|
|
|
run: |
|
|
|
|
nix fmt
|
|
|
|
git diff --exit-code
|
2024-04-01 20:34:37 +01:00
|
|
|
- name: flake check
|
|
|
|
run: nix flake check --all-systems
|
|
|
|
timeout-minutes: 10
|