Bump golang.org/x/sys from 0.0.0-20210630005230-0f9fa26af87c to 0.1.0 #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: [push] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.22 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: Test | |
run: | | |
make | |
make windows | |
TZ=UTC go test -v ./... | |
- name: StoreBinaries | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Binaries | |
path: goext4* |