Skip to content

build(deps): bump golang.org/x/sys from 0.0.0-20211019181941-9d821ace8654 to 0.1.0 #16

build(deps): bump golang.org/x/sys from 0.0.0-20211019181941-9d821ace8654 to 0.1.0

build(deps): bump golang.org/x/sys from 0.0.0-20211019181941-9d821ace8654 to 0.1.0 #16

Workflow file for this run

# Adapted from https://github.com/mvdan/github-actions-golang/blob/7aaba8c78195e7b688422b1a3e0733e93d525178/README.md
on: [ 'push', 'pull_request' ]
name: BuildAndTest
jobs:
test:
strategy:
matrix:
go-version: [ '1.17.x', '1.16.x' ]
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: make build
- name: Test
run: make test