go-cmw/.drone.yml

50 lines
675 B
YAML
Raw Normal View History

2023-07-02 19:01:44 +00:00
---
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