Skip to content

Feat/41/doc (#48)

Feat/41/doc (#48) #34

Workflow file for this run

name: "Build & Test"
on:
pull_request:
branches:
- "*"
push:
branches:
- "main"
jobs:
build:
name: "Build & Test"
runs-on: ubuntu-latest
steps:
- name: Setup Go 1.x
uses: actions/setup-go@v4
with:
go-version: ^1.2
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Clean and Build
run: make clean build
- name: Test Coverage
run: make test-cover