fix: telemetry id #6
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-check | |
on: | |
pull_request: | |
types: ['opened', 'reopened', 'synchronize'] | |
merge_group: | |
workflow_dispatch: | |
concurrency: | |
group: docsfmttest-${{ github.event.pull_request.head.repo.full_name }}/${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
docsfmttest: | |
name: docs-check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20.x' | |
# cache-dependency-path: tests/go.sum | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_wrapper: false | |
- name: Install tools | |
run: make tools | |
- name: Check fmt and docs | |
run: | | |
echo "==> Running make fmt & make docs" | |
make fmt | |
make docs | |
echo "==> Testing for changes to tracked files" | |
CHANGES=$(git status -suno) | |
if [ "$CHANGES" ]; then | |
echo "Repository formatting or documentation is not correct." | |
echo "Run 'make fmt && make docs' locally and commit the changes to fix." | |
exit 1 | |
fi |