diff --git a/.drone.yml b/.drone.yml index 06eb6a6..0d93762 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,11 +1,14 @@ --- kind: pipeline -type: docker +type: exec name: default +platform: + os: linux + arch: amd64 + steps: - name: backend - image: golang commands: - - go build - - go test + - docker run -i --rm -u 0 -v $(pwd):/go/src/mtest -w /go/src/mtest golang go test -v . +