Skip to content

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

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 #369

Workflow file for this run

on: [push, pull_request]
name: build
jobs:
test:
strategy:
matrix:
go-version: [1.23.x, 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: Format Unix
if: runner.os == 'Linux'
run: test -z $(go fmt ./...)
- name: Test
run: go test -v ./...
staticcheck:
name: "Run staticcheck"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: dominikh/staticcheck-action@024238d2898c874f26d723e7d0ff4308c35589a2
with:
version: "latest"