Some checks failed
Update `flake.lock` / update_lockfile (push) Has been cancelled
17 lines
358 B
YAML
17 lines
358 B
YAML
name: "Flake check"
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: ['main']
|
|
|
|
jobs:
|
|
lockfile:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Install nix
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
|
- name: Run nix flake check
|
|
run: nix flake check
|