Skip to content

Bump golang.org/x/sys from 0.0.0-20210615035016-665e8c7367d1 to 0.1.0 #24

Bump golang.org/x/sys from 0.0.0-20210615035016-665e8c7367d1 to 0.1.0

Bump golang.org/x/sys from 0.0.0-20210615035016-665e8c7367d1 to 0.1.0 #24

Workflow file for this run

name: Go Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Download dependencies
run: go mod download -x
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
flags: unittests
verbose: true