Skip to content

build(deps): bump golang.org/x/net from 0.7.0 to 0.17.0 #3

build(deps): bump golang.org/x/net from 0.7.0 to 0.17.0

build(deps): bump golang.org/x/net from 0.7.0 to 0.17.0 #3

Workflow file for this run

name: Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Test
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
- name: Build
run: go build -v ./...
- name: coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
fail_ci_if_error: false # optional (default = false)
verbose: false # optional (default = false)