Skip to content

Bump golang.org/x/crypto from 0.9.0 to 0.17.0 #309

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

Bump golang.org/x/crypto from 0.9.0 to 0.17.0 #309

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
stable: 'true'
go-version: 1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Lint
run: |
go version
go env -w GOSUMDB=off
rm go.sum
go mod tidy
# go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
# PATH=$PATH:$HOME/go/bin golangci-lint run
make release
- name: Test
run: echo go test -v .
#go test ./... -count=1 --test.run TestScaffold