Skip to content

Bump golang.org/x/crypto from 0.11.0 to 0.14.0 #336

Bump golang.org/x/crypto from 0.11.0 to 0.14.0

Bump golang.org/x/crypto from 0.11.0 to 0.14.0 #336

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v1
with:
go-version: 1.19
- uses: actions/checkout@master
- run: go get -t -v ./...
- run: go test $(go list ./...|grep -v mocks) -race -coverprofile=coverage.txt -covermode=atomic -v
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: coverage.txt # optional
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)