Skip to content

Add build workflow

Add build workflow #1

Workflow file for this run

name: Build
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: make build
- name: Test
run: make test