forked from hexlet-codebattle/battle_asserts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (35 loc) · 864 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
generate: clean
clojure -M:generate-asserts
generate-template:
clojure -X:generate-template
clean:
rm -rf issues/*
fix-format:
clojure -M:cljfmt-fix
clojure -M:kibit -- --replace
checks: check-format check-eastwood check-kibit check-kondo
check-format:
clojure -M:cljfmt-check
check-kibit:
clojure -M:kibit
check-eastwood:
clojure -M:eastwood
check-kondo:
clj-kondo --lint src test
check-translations:
clojure -X:check-translations
check-tags:
clojure -X:check-tags
collect-tags:
clojure -X:collect-tags
collect-disabled:
clojure -X:collect-disabled
check-generators-and-solutions:
clojure -X:check-generators-and-solutions
check-outdated-deps:
clojure -Sdeps '{:deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}}' -M -m antq.core
test:
clojure -M:test
release: generate
tar -czf issues.tar.gz issues/*
.PHONY: test issues