Use actions instead of drone #2

Merged
lunny merged 2 commits from lunny/actions into master 2023-04-15 14:33:40 +00:00
3 changed files with 42 additions and 34 deletions

View File

@ -1,33 +0,0 @@
---
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

41
.gitea/workflows/test.yml Normal file
View File

@ -0,0 +1,41 @@
name: test
on:
- push
- pull_request
env:
GOPROXY: https://goproxy.io,direct
GOPATH: /go_path
GOCACHE: /go_cache
jobs:
lint:
name: check and test
runs-on: ubuntu-latest
steps:
- name: cache go path
id: cache-go-path
uses: https://github.com/actions/cache@v3
with:
path: /go_path
key: go_path-${{ github.repository }}-${{ github.ref_name }}
restore-keys: |
go_path-${{ github.repository }}-
go_path-
- name: cache go cache
id: cache-go-cache
uses: https://github.com/actions/cache@v3
with:
path: /go_cache
key: go_cache-${{ github.repository }}-${{ github.ref_name }}
restore-keys: |
go_cache-${{ github.repository }}-
go_cache-
- uses: actions/setup-go@v3
with:
go-version: 1.20
- uses: actions/checkout@v3
- name: build
run: go build -v
- name: test
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic

View File

@ -1,4 +1,4 @@
# captcha [![Build Status](https://drone.gitea.com/api/badges/go-chi/captcha/status.svg)](https://drone.gitea.com/go-chi/captcha)
# captcha
Middleware captcha provides captcha service for [chi](https://github.com/go-chi/chi).