Skip to content

chore(deps): bump golang.org/x/crypto from 0.12.0 to 0.13.0 #31

chore(deps): bump golang.org/x/crypto from 0.12.0 to 0.13.0

chore(deps): bump golang.org/x/crypto from 0.12.0 to 0.13.0 #31

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.17
- name: Test and generate coverage report
run: make test/cover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
name: codecov-umbrella
files: ./main.cover.out
flags: unittests
fail_ci_if_error: true
verbose: true