deps(go): Bump github.com/aws/aws-sdk-go from 1.54.6 to 1.54.8 #165
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs Checks | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
check-func-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install gomplate | |
run: | | |
docker create --name gomplate hairyhenderson/gomplate | |
docker cp gomplate:/gomplate . | |
sudo mv gomplate /usr/local/bin | |
- name: Make sure function docs are up-to-date | |
run: | | |
make --always-make gen-func-docs GOOS= GOARCH= GO=echo | |
git diff --exit-code | |
if [ $? -ne 0 ]; then | |
echo "Function docs are out of date. Please run 'make gen-func-docs' locally and commit the changes." | |
exit 1 | |
fi |