diff options
author | Christian Segundo | 2023-10-08 11:52:40 +0200 |
---|---|---|
committer | Christian Segundo | 2023-10-08 22:30:00 +0200 |
commit | afa6b4b6195483d73cb6a91bc757652301275ed6 (patch) | |
tree | 2c121e4de865febbe809379c6ec0fc725c92125d /Makefile | |
parent | a4644e03b1aa7daf0f2d4c0474d04c3b3aabebbd (diff) | |
download | promqlfmt-afa6b4b6195483d73cb6a91bc757652301275ed6.tar.gz |
Add test cases
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3cae985 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.PHONY: lint +lint: + stylua -c . + +.PHONY: test +test: + nvim --headless -u test/init.lua -c "PlenaryBustedDirectory test/ {minimal_init = 'test/init.lua', sequential = true}" + +.PHONY: clean +clean: + rm -rf .test |