Skip to content

Merge pull request #3 from nao1215/nchika/feat-specify-comment #7

Merge pull request #3 from nao1215/nchika/feat-specify-comment

Merge pull request #3 from nao1215/nchika/feat-specify-comment #7

Workflow file for this run

name: MultiPlatformUnitTest
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit_test:
name: Unit test (linux)
strategy:
matrix:
os:
- "ubuntu-latest"
- "windows-latest"
- "macos-latest"
go:
- "1"
- "1.23"
- "1.22"
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run tests with coverage report output
run: go test -cover -coverpkg=./... -coverprofile=coverage.out ./...