forked from IlanCosman/tide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (24 loc) · 769 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
SHELL := /usr/bin/env fish
.PHONY: all
all: fmt lint install test
.PHONY: fmt
fmt:
@fish_indent --write **.fish
.PHONY: lint
lint:
@for file in **.fish; fish --no-execute $$file; end
.PHONY: install
install:
@type -q fisher || begin; curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher; end
@fisher install . >/dev/null
littlecheck.py:
@curl -sL https://raw.githubusercontent.com/ridiculousfish/littlecheck/HEAD/littlecheck/littlecheck.py -o littlecheck.py
.PHONY: test
test: install littlecheck.py
@type -q mock || fisher install IlanCosman/clownfish
@fish tests/test_setup.fish
@_tide_remove_unusable_items
@_tide_cache_variables; python3 littlecheck.py --progress tests/**.test.fish
.PHONY: clean
clean:
@rm littlecheck.py