Skip to content

Huge code simplification #30

Huge code simplification

Huge code simplification #30

Workflow file for this run

name: build
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.22
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Run tests
run: go test -v
- name: Build
run: go build