Skip to content

Bump golang.org/x/crypto from 0.16.0 to 0.17.0 #105

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

Bump golang.org/x/crypto from 0.16.0 to 0.17.0 #105

Workflow file for this run

name: Build and test code
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19.x
- name: Check out code
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Verify
run: go mod verify
- name: Test
run: go test -v ./...