terraform-provider-gitea/.drone.yml
Tobias Trabelsi a79db16011
Some checks failed
continuous-integration/drone/push Build is failing
added repository resource and moved repo
2022-06-04 17:17:08 +02:00

32 lines
543 B
YAML

---
kind: pipeline
type: kubernetes
name: terraform-provider-gitea
platform:
os: linux
arch: amd64
steps:
- name: init
image: golang:1.18.3-alpine3.16
commands:
- "go mod download"
when:
event:
- push
- pull_request
- name: build
image: golang:1.18.3-alpine3.16
commands:
- "make build"
when:
event:
- push
- pull_request
- name: test
image: golang:1.18.3-alpine3.16
commands:
- "make test"
when:
event:
- push
- pull_request