Skip to content

Add default make target #12

Add default make target

Add default make target #12

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ ubuntu-latest ]
go: [ 1.21.x ]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...