Skip to content

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #269

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #269

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: |
go test -v -covermode=count -coverprofile=coverage.out ./...
- name: Coverage
uses: jandelgado/gcov2lcov-action@v1.1.1
- name: Coveralls
uses: coverallsapp/github-action@v2.3.4
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov