-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Makefile
27 lines (20 loc) · 832 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
format:
stylua lua/ tests/
format-check:
stylua --check lua/ tests/
lint:
selene lua/ tests/
local-test-setup:
git clone https://github.com/ckipp01/multiple-build-file-example.git
git clone https://github.com/ckipp01/mill-minimal.git
git clone https://github.com/ckipp01/minimal-scala-cli-test.git
test-setup:
nvim --headless --noplugin -u tests/minimal.vim -c "PlenaryBustedDirectory tests/setup/ { minimal = true, sequential = true }"
test:
nvim --headless --noplugin -u tests/minimal.vim -c "PlenaryBustedDirectory tests/tests/ { minimal = true, sequential = true }"
test-handlers:
nvim --headless --noplugin -u tests/minimal.vim -c "PlenaryBustedDirectory tests/tests/handlers/ { minimal = true, sequential = true }"
clean:
rm -rf mill-minimal
rm -rf minimal-scala-cli-test
rm -rf multiple-build-file-example