Skip to content

完善测试

完善测试 #3

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
goVer: ['1.20', '1.21', '1.22', '1.23']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set timezone
uses: szenius/[email protected]
with:
timezoneLinux: "Asia/Shanghai"
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.goVer }}
- name: Go mod tidy
run: go mod tidy
- name: Unit tests
run: go test -short -covermode=atomic -coverprofile=cover.out ./...
- name: Test Generic
run: go test -short -tags=purego -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: cover.out