Skip to content

Bump actions/setup-go from 5.1.0 to 5.2.0 in the actions group #174

Bump actions/setup-go from 5.1.0 to 5.2.0 in the actions group

Bump actions/setup-go from 5.1.0 to 5.2.0 in the actions group #174

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- '1.21'
- '1.22'
- '1.23'
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...