fix ci
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
NeoVim tests / code-quality (push) Successful in 1m44s

This commit is contained in:
2025-08-26 14:50:11 -06:00
parent 5dedfb991f
commit d486b53a44
4 changed files with 35 additions and 17 deletions

View File

@@ -14,16 +14,16 @@ jobs:
- name: Populate Nix store
run:
nix-shell --run 'true'
nix-shell --pure --run 'true'
- name: Type-check with lua-language-server
run:
nix-shell --run 'make lint'
nix-shell --pure --run 'make lint'
- name: Check formatting with stylua
run:
nix-shell --run 'make fmt-check'
nix-shell --pure --run 'make fmt-check'
- name: Run busted tests
run:
nix-shell --run 'make test'
nix-shell --pure --run 'make test'