1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-12-01 09:51:39 -05:00
forgejo/vendor/gitea.com/go-chi/captcha/.drone.yml

33 lines
504 B
YAML
Raw Normal View History

2021-10-13 22:50:23 -04:00
---
kind: pipeline
2021-10-13 22:50:23 -04:00
name: go1-13
platform:
os: linux
arch: arm64
steps:
- name: test
2021-10-13 22:50:23 -04:00
image: golang:1.13
environment:
2021-10-13 22:50:23 -04:00
GOPROXY: https://goproxy.cn
commands:
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
---
kind: pipeline
2021-10-13 22:50:23 -04:00
name: go1-16
platform:
os: linux
arch: arm64
steps:
- name: test
2021-10-13 22:50:23 -04:00
image: golang:1.16
environment:
2021-10-13 22:50:23 -04:00
GOPROXY: https://goproxy.cn
commands:
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic