my system configurations ^-^
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add lockfile validation workflow

willow 5cc45984 4399897a

+22
+22
.github/workflows/lockfile.yml
··· 1 + name: Validate Flake Lock 2 + 3 + on: 4 + workflow_dispatch: 5 + push: 6 + paths: 7 + - "**.lock" 8 + 9 + jobs: 10 + check-flake: 11 + name: Check Lock 12 + runs-on: ubuntu-latest 13 + 14 + steps: 15 + - name: Checkout 16 + uses: actions/checkout@v4 17 + 18 + - name: Install Nix 19 + uses: cachix/install-nix-action@v31 20 + 21 + - name: Check flake.lock 22 + run: nix run github:tgirlcloud/locker