Skip to content

Bump actions/setup-go from 3 to 4 #19

Bump actions/setup-go from 3 to 4

Bump actions/setup-go from 3 to 4 #19

Workflow file for this run

name: Go
on: [push]
jobs:
test:
strategy:
matrix:
platform:
- macos-latest
- ubuntu-latest
- windows-latest
go-version:
- '1.15'
- '1.16'
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...