Skip to content

Refactor

Refactor #2

Workflow file for this run

name: "Test"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
run:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Setup Go"
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Test
run: |
go test -v ./...