Skip to content

Bump golang.org/x/crypto from 0.0.0-20191112222119-e1110fd1c708 to 0.17.0 #44

Bump golang.org/x/crypto from 0.0.0-20191112222119-e1110fd1c708 to 0.17.0

Bump golang.org/x/crypto from 0.0.0-20191112222119-e1110fd1c708 to 0.17.0 #44

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unit-test:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic
- name: Coverage
run: bash <(curl -s https://codecov.io/bash)