Skip to content

chore: Bump golang.org/x/crypto from 0.28.0 to 0.29.0 (#198) #154

chore: Bump golang.org/x/crypto from 0.28.0 to 0.29.0 (#198)

chore: Bump golang.org/x/crypto from 0.28.0 to 0.29.0 (#198) #154

name: Ensure Docs are Compiled
on:
push:
jobs:
ensure-docs-compiled:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- uses: actions/setup-go@v5
- shell: bash
run: make generate
- shell: bash
run: |
if [[ -z "$(git status -s)" ]]; then
echo "OK"
else
echo "Docs have been updated, but the compiled docs have not been committed."
echo "Run 'make generate', and commit the result to resolve this error."
exit 1
fi