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

Bump golang.org/x/crypto from 0.11.0 to 0.17.0 #377

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

Bump golang.org/x/crypto from 0.11.0 to 0.17.0 #377

Workflow file for this run

name: build
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ~1.20
cache: true
- name: test
run: |
go test -v -failfast -race -coverpkg=./... -covermode=atomic -coverprofile=coverage.txt ./...
- uses: codecov/codecov-action@v3
if: matrix.os == 'ubuntu-latest'
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt