Skip to content

Bump golang.org/x/crypto from 0.8.0 to 0.17.0 #322

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

Bump golang.org/x/crypto from 0.8.0 to 0.17.0 #322

Workflow file for this run

on: [push, pull_request]
name: Build/Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.20.x
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: go build
- name: Test
run: go test ./...
- name: Check formatting
run: test -z "$(go fmt ./...)"