Skip to content

Bump golang.org/x/crypto from 0.4.0 to 0.17.0 #18

Bump golang.org/x/crypto from 0.4.0 to 0.17.0

Bump golang.org/x/crypto from 0.4.0 to 0.17.0 #18

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
go:
- "1.19"
- "1.20"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Bench
run: go test -bench=. -v ./...