Skip to content

feat(deps): bump golang.org/x/crypto from 0.11.0 to 0.12.0 #13

feat(deps): bump golang.org/x/crypto from 0.11.0 to 0.12.0

feat(deps): bump golang.org/x/crypto from 0.11.0 to 0.12.0 #13

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: stable
- name: unit test
run: CI=true go test -v -coverprofile=coverage.out ./...
- name: codecov
uses: codecov/codecov-action@v3
with:
flags: unittests
fail_ci_if_error: true
files: coverage.out