Skip to content

Infra

Infra #1

Workflow file for this run

---
name: Lint
on:
merge_group:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
# =====================================================================
# Primary Lint job
# =====================================================================
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.1
- uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Run flake pre-commit hooks
run: nix develop -c pre-commit run --all-files