Skip to content

Bump golang.org/x/crypto from 0.15.0 to 0.17.0 #184

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

Bump golang.org/x/crypto from 0.15.0 to 0.17.0 #184

Workflow file for this run

---
name: Tests
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
TZ: "America/New_York"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Run coverage
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: ./coverage.txt
name: codecov-umbrella
verbose: true