Skip to content

Update module golang.org/x/sys to v0.25.0 - autoclosed #227

Update module golang.org/x/sys to v0.25.0 - autoclosed

Update module golang.org/x/sys to v0.25.0 - autoclosed #227

Workflow file for this run

on:
push:
branches: main
pull_request:
types: [opened, reopened, synchronize]
workflow_call: {}
name: Test
jobs:
test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Windows tools
run: |
.\.github\InstallShims.ps1
.\.github\InstallDrivers.ps1
if: matrix.os == 'windows-latest'
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- name: Build
run: go build ./...
- name: Test
run: sudo -- go test ./...