Skip to content

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

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

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

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.23.x, 1.24.x]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go mod download
- name: Run golangci-lint (v2)
uses: golangci/golangci-lint-action@v8
with:
version: v2.1.0
args: --verbose
- name: Run tests
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
benchmark:
name: Benchmark
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
- name: Run benchmarks
run: go test -bench=. -benchmem ./...