Skip to content

Update actions/setup-go action to v5.0.1 #61

Update actions/setup-go action to v5.0.1

Update actions/setup-go action to v5.0.1 #61

Workflow file for this run

on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
name: test
jobs:
test:
strategy:
matrix:
go-version: [1.12.x, 1.22.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/[email protected]
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: go test ./...