Skip to content

Upgrade to Go v1.21 and dependencies #11

Upgrade to Go v1.21 and dependencies

Upgrade to Go v1.21 and dependencies #11

Workflow file for this run

name: build
on:
push:
branches: ['trunk']
pull_request:
branches: ['trunk']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Vet
run: go vet -v ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...