Skip to content

Bump golang.org/x/crypto from 0.0.0-20220112180741-5e0467b6c7ce to 0.17.0 #384

Bump golang.org/x/crypto from 0.0.0-20220112180741-5e0467b6c7ce to 0.17.0

Bump golang.org/x/crypto from 0.0.0-20220112180741-5e0467b6c7ce to 0.17.0 #384

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: go test -gcflags=-l -v $(go list ./...| grep -v /example/ | grep -v /rpc)