openstreetmap-tile-server/.travis.yml
Guillaume Jacquenot f9f1047400 📝 Updated .travis.yml
2019-12-23 21:35:45 +01:00

19 lines
334 B
YAML

os: linux
language: minimal
services:
- docker
before_install:
- echo "Before install"
before_script:
- echo "Before script"
script:
- make build
- make test
- make stop
after_script:
- docker images
after_success:
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then echo "One can push to image dockerhub" ; fi
notifications:
email: true