jiriks74
6e1b319b72
It takes 11 minutes to cache everything on a otherwise 2 minute job. Nix doesn't even pull from it most of the time.
29 lines
841 B
YAML
29 lines
841 B
YAML
name: Perform checks
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
formatting:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install nix
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
|
- name: Check Nix flake inputs
|
|
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
|
|
- name: Run nix fmt
|
|
run: nix fmt -- --check .
|
|
|
|
nix_flake_check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install nix
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
|
- name: Check Nix flake inputs
|
|
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
|
|
- name: Run nix flake check
|
|
run: nix flake check
|