Skip to content

Bump golang.org/x/crypto from 0.13.0 to 0.14.0 #115

Bump golang.org/x/crypto from 0.13.0 to 0.14.0

Bump golang.org/x/crypto from 0.13.0 to 0.14.0 #115

Workflow file for this run

name: unit test
on:
pull_request:
branches:
- main
- release/**
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
- name: Check docs up to date
run: |
set -euo pipefail
go run cmd/docs/main.go
if [[ `git status --porcelain` ]]; then
echo "Docs are not up-to-date"
exit 1
fi
- name: Test
run: go test -v ./pkg/...
- name: Report coverage
uses: codecov/[email protected]