Skip to content

chore. version up golang at github actions #7

chore. version up golang at github actions

chore. version up golang at github actions #7

Workflow file for this run

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
name: build
jobs:
build:
strategy:
matrix:
go-version: [1.21.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: |
go build -v .