Skip to content

Bumped testify

Bumped testify #38

Workflow file for this run

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