Skip to content

Updated description #48

Updated description

Updated description #48

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
strategy:
matrix:
go-version: [ '1.20', '1.21' ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go test -race -coverprofile coverage.out -covermode atomic ./...
- uses: codecov/codecov-action@v3
if: matrix.go-version == '1.20' && matrix.os == 'ubuntu-latest'