Skip to content

flake.lock: Update

flake.lock: Update #84

Workflow file for this run

name: 'Flake check'
on:
push:
jobs:
flake-check:
strategy:
matrix:
os:
- 'ubuntu-latest'
- 'macos-latest'
runs-on: '${{ matrix.os }}'
steps:
- name: 'Checkout the repository'
uses: 'actions/checkout@v4'
- name: 'Install Nix'
uses: 'DeterminateSystems/nix-installer-action@v16'
- name: 'Setup Magic Nix Cache'
uses: 'DeterminateSystems/magic-nix-cache-action@v9'
- name: 'Give GitHub Actions access to infra-secrets'
uses: 'webfactory/[email protected]'
with:
ssh-private-key: '${{ secrets.INFRA_SECRETS_DEPLOY_KEY }}'
- name: 'Run Nix flake checker'
uses: 'DeterminateSystems/flake-checker-action@v9'
with:
ignore-missing-flake-lock: false
fail-mode: true
- name: 'Run checks'
run: 'nix flake check'