c5d5d63c9c
* update macaron to v1.5 of fork * update macaron to v1.5 of fork * test gzip PR * add push method impl to context_tests * use proper gzip commit Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
24 lines
No EOL
426 B
YAML
Vendored
24 lines
No EOL
426 B
YAML
Vendored
kind: pipeline
|
|
name: go1-14
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.14
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
commands:
|
|
- go build -v
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
---
|
|
kind: pipeline
|
|
name: go1-15
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.15
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
commands:
|
|
- go build -v
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic |