public-ip-tracker/.drone.yml

28 lines
378 B
YAML
Raw Normal View History

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