Skip to content

Bump the actions group across 1 directory with 2 updates #183

Bump the actions group across 1 directory with 2 updates

Bump the actions group across 1 directory with 2 updates #183

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'
- '1.24.0-rc.1'
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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 ./...