Skip to content

chore(deps): update all non-major dependencies #235

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #235

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
test:
strategy:
matrix:
go-version: ['1.21', '1.22', stable]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
with:
go-version: ${{ matrix.go-version }}
- uses: golangci/golangci-lint-action@2e788936b09dd82dc280e845628a40d2ba6b204c # v6
- run: make lint
- run: make test
- run: make bench