Skip to content

fix(deps): update module github.com/stretchr/testify to v1.10.0 #147

fix(deps): update module github.com/stretchr/testify to v1.10.0

fix(deps): update module github.com/stretchr/testify to v1.10.0 #147

Workflow file for this run

name: go
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Install richgo
run: |
go install github.com/kyoh86/richgo@latest
- name: Run tests and generate coverage data
run: |
make test-go-coverage
env:
GO111MODULE: "auto"
- name: Upload coverage to CodeCov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}