Skip to content

fix(deps): Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #3

fix(deps): Bump github.com/stretchr/testify from 1.9.0 to 1.10.0

fix(deps): Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #3

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go-version: [1.23.x]
include:
- go-version: 1.23.x
os: ubuntu-latest
upload-coverage: true
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
shell: bash
run: make build
- name: Test and Coverage
shell: bash
env:
UPLOAD_COVERAGE: ${{ matrix.upload-coverage }}
COVERPROFILE: ./cover.out
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: make test