Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Bump golang.org/x/sys from 0.23.0 to 0.24.0 #229

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

Bump golang.org/x/sys from 0.23.0 to 0.24.0 #229

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...