Skip to content

deps(deps): bump github.com/stretchr/testify from 1.11.1 to 1.12.1 #464

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

deps(deps): bump github.com/stretchr/testify from 1.11.1 to 1.12.1 #464

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build and Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go-version: ["1.25"]
steps:
- name: Set git to use LF (for cross-platform snapshot testing)
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v7
- name: Set up mise
uses: jdx/mise-action@v4
with:
cache: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Run tests
run: gotestsum --format pkgname -- ./... -race -coverprofile=coverage.txt -covermode=atomic
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up mise
uses: jdx/mise-action@v4
with:
cache: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.11.4
args: --timeout=5m
- name: Check docs in sync with snippets
run: npx markdown-code check