Skip to content

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 (#20) #23

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 (#20)

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 (#20) #23

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v3
with:
go-version: 1.20.1
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Get dependencies
run: |
go mod download
- name: Build
run: |
go build ./...
- name: Test
run: |
go test ./...