Skip to content

fix test error output #6

fix test error output

fix test error output #6

Workflow file for this run

name: 'Test'
on:
push: {}
pull_request: {}
jobs:
test:
name: 'Test'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: 'Setup go'
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
- name: 'Test'
run: 'go test ./...'