Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

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

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 #42

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: Go Lint Standard
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
args: "--out-${NO_FUTURE}format colored-line-number --timeout=15m"
- run: go vet ./...
- run: go install github.com/keybase/go-updater/test
- run: echo "{GOPATH}=$HOME/go" >> $GITHUB_ENV
- run: go test -v -test.paniconexit0 ./...