You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ratchet/.drone.yml

16 lines
202 B
YAML

kind: pipeline
type: docker
name: CI Test Pipeline
steps:
- name: Unit Tests
image: golang:1.23
privileged: true
commands:
- go test -v ./...
trigger:
event:
- pull_request
- push