ev/.drone.yml

15 lines
194 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
2023-09-29 11:01:56 -06:00
image: golang:1.21.1
2023-05-29 09:32:25 -06:00
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