mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
00d43ad960
Run `pre-commit` and generate `YARD` docs with Docker Update CONTRIBUTING
36 lines
529 B
Makefile
36 lines
529 B
Makefile
# mruby is using Rake (https://ruby.github.io/rake/) as a build tool.
|
|
|
|
RAKE = rake
|
|
|
|
all :
|
|
$(RAKE)
|
|
.PHONY : all
|
|
|
|
test : all
|
|
$(RAKE) test
|
|
.PHONY : test
|
|
|
|
clean :
|
|
$(RAKE) clean
|
|
.PHONY : clean
|
|
|
|
check :
|
|
pre-commit run --all-files
|
|
.PHONY : check
|
|
|
|
checkinstall :
|
|
pre-commit install
|
|
.PHONY : checkinstall
|
|
|
|
checkupdate :
|
|
pre-commit autoupdate
|
|
.PHONY : checkupdate
|
|
|
|
composecheck :
|
|
docker-compose -p mruby run test pre-commit run --all-files
|
|
.PHONY : composecheck
|
|
|
|
composetest :
|
|
docker-compose -p mruby run test
|
|
.PHONY : composetest
|