aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gitea.com/go-chi/captcha/.drone.yml
blob: 3cfd6c32e28f90056695e1ed3adcb4be8ccd4ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
kind: pipeline
name: go1-13

platform:
  os: linux
  arch: arm64

steps:
- name: test
  image: golang:1.13
  environment:
    GOPROXY: https://goproxy.cn
  commands:
  - go build -v
  - go test -v -race -coverprofile=coverage.txt -covermode=atomic

---
kind: pipeline
name: go1-16

platform:
  os: linux
  arch: arm64

steps:
- name: test
  image: golang:1.16
  environment:
    GOPROXY: https://goproxy.cn
  commands:
  - go build -v
  - go test -v -race -coverprofile=coverage.txt -covermode=atomic