Skip to content

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

chore(deps): update all non-major dependencies

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

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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
persist-credentials: false
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6
with:
go-version: ${{ matrix.go-version }}
- uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9
- run: make lint
- run: make test
- run: make bench