nix-community.nixvim/.github/workflows/check-flake.yml
2025-05-25 21:02:08 +01:00

25 lines
513 B
YAML

name: Check Flake
on:
workflow_dispatch: # can be triggered manually
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches-ignore:
- update/*
paths-ignore:
- "LICENSE"
jobs:
flake-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install nix
uses: cachix/install-nix-action@v31
- name: Run flake checker
uses: DeterminateSystems/flake-checker-action@main