Skip to content

Bump actions/checkout from 4 to 5 (#1456) #2

Bump actions/checkout from 4 to 5 (#1456)

Bump actions/checkout from 4 to 5 (#1456) #2

Workflow file for this run

on:
push:
branches:
- master
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.21.x, 1.22.x, 1.23.x, 1.24.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -race ./...