Skip to content

Bump actions/setup-go from 5.0.2 to 5.2.0 #28

Bump actions/setup-go from 5.0.2 to 5.2.0

Bump actions/setup-go from 5.0.2 to 5.2.0 #28

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.23' ]
name: Go ${{ matrix.go }} test
steps:
- name: Checkout repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Install Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: go test -v -race ./...