Skip to content

Bump golang.org/x/crypto from 0.0.0-20180403160946-b2aa35443fbc to 0.1.0 #9

Bump golang.org/x/crypto from 0.0.0-20180403160946-b2aa35443fbc to 0.1.0

Bump golang.org/x/crypto from 0.0.0-20180403160946-b2aa35443fbc to 0.1.0 #9

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.20"
- 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