Skip to content

build(deps): Bump flatted from 3.3.1 to 3.4.2 in /website #2493

build(deps): Bump flatted from 3.3.1 to 3.4.2 in /website

build(deps): Bump flatted from 3.3.1 to 3.4.2 in /website #2493

name: Verify CLI Documentation
on: [push, pull_request]
jobs:
build:
name: Verify CLI Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Set up Go
uses: actions/setup-go@7b8cf10d4e4a01d4992d18a89f4d7dc5a3e6d6f4 # v4.3.0
with:
go-version: 1.22.5
- name: Run gen doc
run: |
set -e
make gendoc
output=$(git status -s)
if [ -z "${output}" ]; then
exit 0
fi
echo 'We wish to maintain a clean documentation. Please run the command `go run ./go/main.go gen doc` on your branch, commit and push again.'
echo 'Running `go run ./go/main.go gen doc` on this CI test yields with the following changes:'
echo "$output"
exit 1