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.
flux-feed/.drone.yml

18 lines
276 B
YAML

---
kind: pipeline
type: docker
name: CI Test Pipeline
steps:
- name: Go Unit Tests and Linters
image: golang:1.22
commands:
- go test ./...
- go vet ./...
- bash -xc './scripts/check_go_fmt.sh'
group: test-lint
trigger:
event:
- pull_request
- push