Skip to content

build: bump golang.org/x/sys from 0.33.0 to 0.34.0 in the golang-org group #348

build: bump golang.org/x/sys from 0.33.0 to 0.34.0 in the golang-org group

build: bump golang.org/x/sys from 0.33.0 to 0.34.0 in the golang-org group #348

Workflow file for this run

name: Test
on:
push:
pull_request:
permissions: {}
jobs:
test:
strategy:
matrix:
go-version: [1.22.x,1.23.x,1.24.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: ${{ matrix.go-version }}
- name: Validate
if: matrix.platform == 'ubuntu-latest'
run: make validate
- name: Test
run: make test