Skip to content

build(deps): bump golang.org/x/tools from 0.12.0 to 0.13.0 #64

build(deps): bump golang.org/x/tools from 0.12.0 to 0.13.0

build(deps): bump golang.org/x/tools from 0.12.0 to 0.13.0 #64

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Run golangci-lint
uses: golangci/[email protected]
with:
version: latest
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...