Skip to content

Bump golang.org/x/sys from 0.24.0 to 0.25.0 #220

Bump golang.org/x/sys from 0.24.0 to 0.25.0

Bump golang.org/x/sys from 0.24.0 to 0.25.0 #220

Workflow file for this run

on:
push:
branches: [ main ]
pull_request:
branches: [ '**' ]
name: Go
jobs:
build:
strategy:
matrix:
go-version: [1.17.x, 1.20.x, 1.21.x, 1.22.x]
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Run tests
run: |
go test -race -count=5 ./...
- name: Shuffle tests
if: startsWith(matrix.go-version, '1.22')
run: |
go test -shuffle=on ./...