mirror of
https://github.com/ViViDboarder/drone-webdav.git
synced 2025-01-06 20:47:33 +00:00
14 lines
348 B
Makefile
14 lines
348 B
Makefile
.PHONY: clean all
|
|
|
|
.PHONY: default
|
|
default: test
|
|
|
|
.PHONY: test
|
|
test:
|
|
docker-compose -f ./tests/docker-compose-private.yml up \
|
|
--build --force-recreate \
|
|
--abort-on-container-exit --exit-code-from plugin
|
|
docker-compose -f ./tests/docker-compose-public.yml up \
|
|
--build --force-recreate \
|
|
--abort-on-container-exit --exit-code-from plugin
|