Skip to content

Merge pull request #92 from silverwind/patch-1 #26

Merge pull request #92 from silverwind/patch-1

Merge pull request #92 from silverwind/patch-1 #26

Workflow file for this run

name: test
on:
push:
branches:
- master
jobs:
test:
strategy:
matrix:
go-version: ["1.20", "1.21", "1.22"]
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- run: go get -t -v ./...
- run: go test -race -coverprofile=coverage.out -covermode=atomic -timeout 60s
- uses: codecov/codecov-action@v3