chore(): Adds test pipeline
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Elia el Lazkani 2023-07-02 21:01:44 +02:00
parent 4ef54af009
commit 27d3667372

49
.drone.yml Normal file
View file

@ -0,0 +1,49 @@
---
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