Skip to content

Bump golang.org/x/crypto from 0.0.0-20201221181555-eec23a3978ad to 0.17.0 #138

Bump golang.org/x/crypto from 0.0.0-20201221181555-eec23a3978ad to 0.17.0

Bump golang.org/x/crypto from 0.0.0-20201221181555-eec23a3978ad to 0.17.0 #138

Workflow file for this run

name: Go build and test
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: stable
check-latest: true
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -cover ./...