Skip to content

Bump golang.org/x/sys from 0.12.0 to 0.13.0 #106

Bump golang.org/x/sys from 0.12.0 to 0.13.0

Bump golang.org/x/sys from 0.12.0 to 0.13.0 #106

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Setup VS environment
shell: cmd
run: |
for /f "usebackq delims=" %%i in (`vswhere.exe -latest -property installationPath`) do echo %%i\VC\Auxiliary\Build>>%GITHUB_PATH%
- name: Build
shell: cmd
run: build.bat
test:
name: Go
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Test
run: go test -v ./...