Skip to content

build(deps): bump github.com/joeycumines/go-bigbuff from 1.15.1 to 1.17.0 #26

build(deps): bump github.com/joeycumines/go-bigbuff from 1.15.1 to 1.17.0

build(deps): bump github.com/joeycumines/go-bigbuff from 1.15.1 to 1.17.0 #26

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
strategy:
fail-fast: false
matrix:
go-version:
- '1.21'
- '1.20'
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Set up Staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Checkout
uses: actions/checkout@v4
- name: Vet
run: go vet -v ./...
- name: Staticcheck
run: staticcheck ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover -race -count=3 ./...