Skip to content

Change: refactor structure and makefile, also switch do- arugments to… #21

Change: refactor structure and makefile, also switch do- arugments to…

Change: refactor structure and makefile, also switch do- arugments to… #21

Workflow file for this run

name: Go build and test
on:
push:
branches: ["main"]
paths:
- "**.go"
- "go.*"
- "version.txt"
permissions:
contents: write
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"
- name: Test
run: make coverage
- name: Build
run: make build