Skip to content

Refactor: remove old code, change layout, simplify (#16) #39

Refactor: remove old code, change layout, simplify (#16)

Refactor: remove old code, change layout, simplify (#16) #39

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Go
uses: actions/setup-go@master
with:
go-version: 1.22
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...