Skip to content

Do not override defaults with blanks (#11) #43

Do not override defaults with blanks (#11)

Do not override defaults with blanks (#11) #43

Workflow file for this run

name: Go
on: [ push, pull_request ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go mod download
- name: Test
run: cd test && go test -v ./...