Skip to content

add initial action and go.mod (#2) #1

add initial action and go.mod (#2)

add initial action and go.mod (#2) #1

Workflow file for this run

name: build-test
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
govet:
name: Vet
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.20"
- run: |
go vet ./...