public-ip-tracker/.drone.yml
Melora Hugues d23f79e961
All checks were successful
continuous-integration/drone/push Build is passing
Improve CI
Add more tests to the CI, including a docker build test, and add the
generation and publication of a new docker image on master and tags
2023-02-02 20:20:43 +01:00

27 lines
378 B
YAML

kind: pipeline
type: docker
name: Tests
steps:
- name: Go tests
image: golang
commands:
- make -C tracker test
- name: Go build
image: golang
commands:
- make -C tracker build
- name: Docker build
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
platforms:
- linux/amd64
- linux/arm64
trigger:
event:
- push
- tag