diff --git a/.build.yml b/.build.yml index dad8fac..c2a3822 100644 --- a/.build.yml +++ b/.build.yml @@ -7,4 +7,4 @@ pipeline: - make install step: test commands: - - make test + - make tests diff --git a/Makefile b/Makefile index 0385608..0d6fe47 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ TESTS := $(subst .$(TEST_EXT),.test,$(wildcard $(TEST_DIR)/*.$(TEST_EXT))) .SUFFIXES: -.PHONY: clean debug install release style test +.PHONY: clean debug install release style tests debug: export CFLAGS := $(CFLAGS) $(DCFLAGS) debug: engine sapi modules @@ -183,4 +183,4 @@ install: engine modules sapi style: astyle $(ASTYLE_FLAGS) --recursive ./*.c,*.h -test: $(TESTS) +tests: $(TESTS)