mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-04 18:15:08 +02:00
25 lines
513 B
YAML
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
|