Skip to content

chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 #951

chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1

chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 #951

Workflow file for this run

on:
push:
branches: ['master']
pull_request:
name: build
jobs:
test:
strategy:
matrix:
go-version: [1.24.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Test
run: go test -covermode atomic -coverprofile='${{ matrix.os }}-${{ matrix.go-version }}.cov' ./...
- name: Coveralls Parallel
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
with:
file: '${{ matrix.os }}-${{ matrix.go-version }}.cov'
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
with:
parallel-finished: true