fix ci
All checks were successful
NeoVim tests / code-quality (push) Successful in 1m16s

This commit is contained in:
2025-08-26 14:50:11 -06:00
parent 5dedfb991f
commit 67134fdb2e
4 changed files with 41 additions and 16 deletions

17
.woodpecker/ci.yaml Normal file
View File

@@ -0,0 +1,17 @@
when:
- event: push
steps:
- name: build-image
image: docker
commands:
- docker build --rm -t jrop/u.nvim .
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- name: build
image: jrop/u.nvim
commands:
- nix-shell --pure --run 'make lint'
- nix-shell --pure --run 'make fmt-check'
- nix-shell --pure --run 'make test'