Skip to content

build(deps): bump golang.org/x/sys from 0.28.0 to 0.29.0 #296

build(deps): bump golang.org/x/sys from 0.28.0 to 0.29.0

build(deps): bump golang.org/x/sys from 0.28.0 to 0.29.0 #296

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
go: ['1.22.0']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...