Skip to content

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #19

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0

Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #19

Workflow file for this run

name: ci
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
# limit the access of the generated GITHUB_TOKEN
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [oldstable, stable]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
cache-dependency-path: '**/go.sum'
- name: Unit tests
run: go test -v ./...