Skip to content

Bump actions/setup-go from 4 to 5 #12

Bump actions/setup-go from 4 to 5

Bump actions/setup-go from 4 to 5 #12

Workflow file for this run

name: Go - Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.17', '1.18', '1.19']
steps:
- uses: actions/checkout@v4
- name: Build with Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go build ./...