use Gitea actions instead of drone
All checks were successful
checks / check and test (push) Successful in 1m47s
checks / check and test (pull_request) Successful in 1m44s

This commit is contained in:
2023-06-02 23:32:20 +08:00
parent 841529b150
commit 034c1fbee3

View File

@@ -1,55 +0,0 @@
---
kind: pipeline
name: testing
steps:
- name: fetch-tags
pull: default
image: docker:git
commands:
- git fetch --tags --force
when:
event:
exclude:
- pull_request
- name: linter
image: golang:1.14
commands:
- go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.30.0
- golangci-lint run
environment:
GOPROXY: https://goproxy.cn,direct
- name: test
pull: always
image: golang:1.13
commands:
- export PATH=$PATH:/go:/srv/app/bin
- go vet ./...
- go test -v -race ./...
environment:
GOPATH: /srv/app
MINIO_SERVER_ENDPOINT: minio:9000
MINIO_SERVER_ACCESS_KEY_ID:
from_secret: aws_access_key_id
MINIO_SERVER_SECRET_KEY:
from_secret: aws_secret_access_key
MINIO_SERVER_BUCKET: test
GOPROXY: https://goproxy.cn,direct
when:
event:
- push
- tag
- pull_request
services:
- name: minio
image: minio/minio:RELEASE.2020-03-14T02-21-58Z
commands:
- minio server ./data
environment:
MINIO_ACCESS_KEY:
from_secret: aws_access_key_id
MINIO_SECRET_KEY:
from_secret: aws_secret_access_key

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

@@ -0,0 +1,58 @@
name: checks
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: https://github.com/actions/checkout@v3
- name: lint
run: go install golang.org/x/lint/golint@latest && golint ./...
- name: vet
run: go vet ./...
- name: test
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
env:
MINIO_SERVER_ENDPOINT: minio:9000
MINIO_SERVER_ACCESS_KEY_ID: ${{ secrets.aws_access_key_id }}
MINIO_SERVER_SECRET_KEY: ${{ secrets.aws_secret_access_key }}
MINIO_SERVER_BUCKET: test
services:
minio:
image: minio/minio:RELEASE.2022-07-24T01-54-52Z
env:
MINIO_ACCESS_KEY: ${{ secrets.aws_access_key_id }}
MINIO_SECRET_KEY: ${{ secrets.aws_secret_access_key }}
cmd:
- 'minio'
- 'server'
- '/data'