File tree Expand file tree Collapse file tree 3 files changed +7
-22
lines changed Expand file tree Collapse file tree 3 files changed +7
-22
lines changed Original file line number Diff line number Diff line change 13
13
14
14
steps :
15
15
- uses : actions/checkout@v4
16
- - name : configure
17
- run : ./configure
18
16
- name : make
19
17
run : make
18
+ - name : make check
19
+ run : make check
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ DEPS = lug/lug.hpp lug/detail.hpp lug/error.hpp lug/unicode.hpp lug/utf8.hpp
37
37
# distribution files
38
38
DISTFILES = README.md LICENSE.md Makefile lug.sln runtests.sh doc/ lug/ msvs/ samples/ tests/ tools/
39
39
40
- all : options samples test
40
+ all : options samples tests
41
41
42
42
.cpp.o :
43
43
@echo CXX $<
@@ -57,7 +57,9 @@ $(TESTS_BIN): $(TESTS_OBJ)
57
57
@echo LD $@
58
58
@$(CXX ) -o $@ $@ .o $(LDFLAGS )
59
59
60
- test : $(TESTS_BIN )
60
+ tests : $(TESTS_BIN )
61
+
62
+ check : tests
61
63
@sh runtests.sh " tests" $(TESTS_BIN )
62
64
63
65
lint :
@@ -123,4 +125,4 @@ uninstall:
123
125
@rm -f $(DESTDIR )$(PREFIX ) /include/lug/utf8.hpp
124
126
@rmdir $(DESTDIR )$(PREFIX ) /include/lug
125
127
126
- .PHONY : all samples test lint tools unicode options clean dist install uninstall
128
+ .PHONY : all samples tests check lint tools unicode options clean dist install uninstall
You can’t perform that action at this time.
0 commit comments