Makefile

 1.PHONY: all fmt fmt-check lint check test ci
 2
 3all: fmt lint check test
 4
 5fmt:
 6	lx fmt
 7
 8fmt-check:
 9	lx fmt --check
10
11lint:
12	lx lint
13
14check:
15	lx check
16
17test:
18	lx test
19
20ci: fmt-check lint check test