11 lines
119 B
Makefile
11 lines
119 B
Makefile
.PHONY: default help test
|
|
|
|
default: help
|
|
|
|
help:
|
|
@echo "The make stuff is used by our CI/CD environment."
|
|
|
|
test:
|
|
tox
|
|
|