Skip to content

wipping a bunch of refactors and new tests, cont. #64

wipping a bunch of refactors and new tests, cont.

wipping a bunch of refactors and new tests, cont. #64

Workflow file for this run

name: Test
on:
workflow_call:
pull_request:
branches:
- main
push:
jobs:
go-test:
name: Go Test
strategy:
matrix:
go-version: ['1.22']
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ubuntu-latest
if: github.ref_name != 'main' || true || github.event_name == 'workflow_call'
steps:
- name: checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.22'
- name: Run tests
run: |-
go test -v ./cmd/yutc
go test -v ./pkg
go test -v ./internal