forked from hexlet-codebattle/battle_asserts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
48 lines (32 loc) · 816 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
generate-from-docker: clean
docker run -v $(CURDIR):/battle_asserts clojure /bin/bash -c 'cd /battle_asserts && clojure -m battle-asserts.core'
generate: clean
clojure -m battle-asserts.core
clean:
rm -rf issues/*
format:
clojure -M:cljfmt-fix
checks: check-format check-namespaces check-style check-kondo
check-format:
clojure -M:cljfmt-check
check-style:
clojure -M:kibit
check-namespaces:
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
test:
clojure -M:test
release: generate
tar -czf issues.tar.gz issues/*
.PHONY: test issues