mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 20:30:05 +00:00
22 lines
393 B
YAML
22 lines
393 B
YAML
name: "Nix: validate flake.lock"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- "**.lock"
|
|
|
|
jobs:
|
|
check-flake:
|
|
name: Check Lockfile
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Lix
|
|
uses: ./.github/actions/install-lix
|
|
|
|
- name: Check flake.lock
|
|
run: nix run github:tgirlcloud/pkgs#locker
|