1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-08 20:35:47 +00:00
gitea/vendor/gitea.com/macaron/gzip/.drone.yml
techknowlogick c5d5d63c9c
Macaron 1.5 (#12596)
* 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>
2020-08-27 22:47:17 -04:00

24 lines
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