Skip to content

Bump golang.org/x/sys from 0.12.0 to 0.13.0 (#42) #170

Bump golang.org/x/sys from 0.12.0 to 0.13.0 (#42)

Bump golang.org/x/sys from 0.12.0 to 0.13.0 (#42) #170

Workflow file for this run

on:
push:
branches:
- "*"
pull_request:
name: Build
jobs:
checks:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: "on"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.20' # The Go version to download (if necessary) and use.
- uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make build_amd64
- run: make build_i386