Skip to content

all: bunch of tiny cleanups #2

all: bunch of tiny cleanups

all: bunch of tiny cleanups #2

Workflow file for this run

name: Go package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Build
run: 'go build -v ./...'
- name: Test
run: 'go test -v ./...'