Skip to content

Bump github.com/stretchr/testify from 1.7.0 to 1.8.3 #67

Bump github.com/stretchr/testify from 1.7.0 to 1.8.3

Bump github.com/stretchr/testify from 1.7.0 to 1.8.3 #67

Workflow file for this run

name: ci
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
go: [ '1.13', '1.14', '1.15', '1.16']
steps:
- uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v2
- run: go test -v -coverprofile=profile.cov ./...
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
flag-name: Go-${{ matrix.go }}
parallel: true
# notifies that all test jobs are finished.
finish:
needs: test
runs-on: ubuntu-18.04
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true