Skip to content

chore(deps): update golang docker tag to v1.21 #25

chore(deps): update golang docker tag to v1.21

chore(deps): update golang docker tag to v1.21 #25

Workflow file for this run

name: Go Test Build
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: |
go get -v ./...
- name: Vet
run: go vet -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -cover -v ./...