Skip to content

Merge pull request #105 from jkaninda/refactor #8

Merge pull request #105 from jkaninda/refactor

Merge pull request #105 from jkaninda/refactor #8

Workflow file for this run

name: Test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
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.2'
- name: Test
run: go test -v ./...
- name: Build
run: go build -v ./...