Skip to content

Make code shorter by using writeFunc / readFunc var #140

Make code shorter by using writeFunc / readFunc var

Make code shorter by using writeFunc / readFunc var #140

Workflow file for this run

# https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: Build
on:
- push
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- windows-2019
- windows-latest
- macos-14
- macos-latest
- ubuntu-24.04
- ubuntu-latest
go:
- "1.23"
fail-fast: false
steps:
- name: Checkout source codes
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v
- name: Test
run: go test -v ./...