terraform-provider-gitea/.drone.yml
Tobias Trabelsi 9a4df85f75
All checks were successful
continuous-integration/drone/push Build is passing
added gcc to test image
2022-06-04 17:22:51 +02:00

34 lines
640 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:
- "apk add --update --no-cache make"
- "make build"
when:
event:
- push
- pull_request
- name: test
image: golang:1.18.3-alpine3.16
commands:
- "apk add --update --no-cache make build-base"
- "make test"
when:
event:
- push
- pull_request