Skip to content

build(deps): bump golang.org/x/sys in / #54

build(deps): bump golang.org/x/sys in /

build(deps): bump golang.org/x/sys in / #54

Workflow file for this run

name: Linux Test
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
go-version:
- "1.25"
- "1.26"
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Run tests
run: go test -v -race ./...
# Although this package doesn't support Windows, we want to verify that
# everything builds properly.
- name: Verify build for non-UNIX platforms
run: go build
env:
GOOS: windows