go-cmw/.drone.yml
Elia el Lazkani 27d3667372
Some checks failed
continuous-integration/drone/push Build is failing
chore(): Adds test pipeline
2023-07-02 21:03:33 +02:00

49 lines
675 B
YAML

---
kind: pipeline
name: test
steps:
- name: test-linux-amd64
image: golang
environment:
GOOS: linux
GOARCH: amd64
commands:
- go get
- go test
- name: test-darwin-amd64
image: golang
environment:
GOOS: darwin
GOARCH: amd64
commands:
- go get
- go test
- name: test-windows-amd64
image: golang
environment:
GOOS: windows
GOARCH: amd64
commands:
- go get
- go test
- name: test-linux-arm64
image: golang
environment:
GOOS: linux
GOARCH: arm64
commands:
- go get
- go test
- name: test-darwin-arm64
image: golang
environment:
GOOS: darwin
GOARCH: arm64
commands:
- go get
- go test