Skip to content

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

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

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

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.17
- 1.13
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Set up Staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest
if: ${{ matrix.go-version != '1.13' }}
- name: Set up Staticcheck (Go v1.13)
run: GO111MODULE=on go get -u honnef.co/go/tools/cmd/[email protected]
if: ${{ matrix.go-version == '1.13' }}
- name: Checkout
uses: actions/checkout@v2
- name: Vet
run: go vet -v ./...
- name: Staticcheck
run: staticcheck ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover ./...