Skip to content

Add Go Report Card

Add Go Report Card #7

Workflow file for this run

name: Go Test
on:
push:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Run tests in verbose mode
run: go test -v ./...