Skip to content

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#70) #353

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#70)

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#70) #353

Workflow file for this run

name: Test and build
on: [push, pull_request]
jobs:
tests:
name: Test on go ${{ matrix.go_version }}
runs-on: [ubuntu-latest]
strategy:
matrix:
go_version: ['1.18', '1.19', '1.20']
steps:
- uses: actions/checkout@v1
- name: Use golang ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
- name: Go version
run: |
go version
- name: Go get dependencies
run: |
go get -v -t -d ./...
- name: Run tests
run: |
go test ./... -count=1 -race -cover
- name: Build
if: matrix.go_version == 1.19
run: |
go build -v .