Skip to content

Bump actions/checkout from 3 to 4 #21

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #21

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@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...