diff options
author | Christian Segundo | 2023-10-08 22:44:55 +0200 |
---|---|---|
committer | Christian Segundo | 2024-07-10 18:04:25 +0200 |
commit | 4314871517d356eb608aa206cbd23d3c831041ee (patch) | |
tree | 72332cbe5f17a0a509c53213cc10a1f1ae9d7c01 /Makefile | |
parent | 9ff53495505b8b70971d50ef05b2863a9ce27112 (diff) | |
download | promqlfmt-4314871517d356eb608aa206cbd23d3c831041ee.tar.gz |
fix ci
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,10 +1,14 @@ .PHONY: lint lint: stylua -c . + luacheck . .PHONY: test test: - nvim --headless -u test/init.lua -c "PlenaryBustedDirectory test/ {minimal_init = 'test/init.lua', sequential = true}" + nvim \ + --headless \ + -u test/init.lua \ + -c "PlenaryBustedDirectory test/ {minimal_init = 'test/init.lua', sequential = true}" .PHONY: clean clean: |