Skip to content

comment

comment #3

Workflow file for this run

name: Go
on: [push]
env:
GO_VERSION: '>=1.21.0'
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- run: go test
- run: go build
# based on: github.com/koron-go/_skeleton/.github/workflows/go.yml