Skip to content

Bump golang.org/x/net from 0.0.0-20210525063256-abc453219eb5 to 0.7.0… #95

Bump golang.org/x/net from 0.0.0-20210525063256-abc453219eb5 to 0.7.0…

Bump golang.org/x/net from 0.0.0-20210525063256-abc453219eb5 to 0.7.0… #95

Workflow file for this run

name: unit-test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unit-test:
if: github.repository_owner == 'keikoproj'
name: unit-test
runs-on: ubuntu-20.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: |
go test -coverprofile ./coverage.txt -v ./...
- name: Upload to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.txt