Skip to content

TPT-4319: change swap_size to pointer type and update related logic (… #948

TPT-4319: change swap_size to pointer type and update related logic (…

TPT-4319: change swap_size to pointer type and update related logic (… #948

name: Ensure Docs are Compiled
on:
push:
pull_request:
jobs:
ensure-docs-compiled:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: stable
- 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