Skip to content

chore(deps): bump golang.org/x/crypto from 0.0.0-20220411220226-7b82a4e95df4 to 0.17.0 #192

chore(deps): bump golang.org/x/crypto from 0.0.0-20220411220226-7b82a4e95df4 to 0.17.0

chore(deps): bump golang.org/x/crypto from 0.0.0-20220411220226-7b82a4e95df4 to 0.17.0 #192

Workflow file for this run

name: test
on: [pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Test
run: |
go test -race ./... -coverprofile cover.out
- name: Coverage
run: go tool cover -func cover.out