more tweaks

This commit is contained in:
Barrett Ruth 2026-03-27 18:17:12 -04:00
parent e31b2777f9
commit 25509a48ac
No known key found for this signature in database
GPG key ID: A6C96C9349D2FC81
7 changed files with 522 additions and 0 deletions

View file

@ -14,6 +14,7 @@ jobs:
lua: ${{ steps.changes.outputs.lua }}
markdown: ${{ steps.changes.outputs.markdown }}
vimdoc: ${{ steps.changes.outputs.vimdoc }}
nix: ${{ steps.changes.outputs.nix }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
@ -31,6 +32,9 @@ jobs:
- '*.md'
vimdoc:
- 'doc/**'
nix:
- '*.nix'
- 'flake.lock'
lua-format:
name: Lua Format Check
@ -76,6 +80,16 @@ jobs:
- uses: cachix/install-nix-action@v31
- run: nix develop .#ci --command vimdoc-language-server check doc/
nix-format:
name: Nix Format Check
runs-on: ubuntu-latest
needs: changes
if: ${{ needs.changes.outputs.nix == 'true' }}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v31
- run: nix fmt -- --check .
markdown-format:
name: Markdown Format Check
runs-on: ubuntu-latest