Skip to content

Update Goals in README #28

Update Goals in README

Update Goals in README #28

Workflow file for this run

name: go test
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build -v -o . ./...
- name: Test
run: go test -v ./...