Run 1Password/check-signed-commits-action for PRs (#176) #426
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: Verify Docs | |
on: [push, pull_request] | |
jobs: | |
verify-docs: | |
name: Verify docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ^1.19 | |
- name: Install Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_wrapper: false | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Generate docs | |
run: go generate | |
- name: Check if git detects no changes | |
run: | | |
if output=$(git status --porcelain) && [ -z "$output" ]; then | |
echo "Docs are up to date"; | |
else | |
echo "Not all docs are up-to-date. Run 'go generate' and commit the changes."; | |
echo $output; | |
exit 1; | |
fi |