ev/.drone.yml

15 lines
192 B
YAML
Raw Normal View History

2023-05-29 09:32:25 -06:00
kind: pipeline
type: docker
2023-05-29 10:16:58 -06:00
name: build
2023-05-29 09:32:25 -06:00
steps:
- name: test
image: golang:1.20
commands:
2023-05-29 10:23:50 -06:00
- go test -v -race -skip '^TestE2E|TestMain' ./...
2023-05-29 10:10:38 -06:00
2023-05-29 10:31:09 -06:00
trigger:
event:
- push
- pull_request