Skip to content

Update module github.com/stretchr/testify to v1.10.0 #688

Update module github.com/stretchr/testify to v1.10.0

Update module github.com/stretchr/testify to v1.10.0 #688

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
env:
working-directory: ./src
go-version: 1.15
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test and Create Coverage Data
working-directory: ./
run: go test -v ./... -covermode=count -coverprofile=coverage.out
- name: Convert coverage.out to coverage.lcov
uses: jandelgado/[email protected]
with:
working-directory: ./
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: ./coverage.lcov