Skip to content

Bump golang.org/x/crypto from 0.0.0-20201208171446-5f87f3452ae9 to 0.11.0 #106

Bump golang.org/x/crypto from 0.0.0-20201208171446-5f87f3452ae9 to 0.11.0

Bump golang.org/x/crypto from 0.0.0-20201208171446-5f87f3452ae9 to 0.11.0 #106

Workflow file for this run

# Run unit tests that don't require secrets on any branch/fork pull request
on:
pull_request:
name: Unit tests
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- check-docs
- test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.15.5'
- name: Install dependencies
run: make setup
- name: make ${{ matrix.target }}
run: make ${{ matrix.target }}