fix(edgeservices): use zone from lb_config prior to provider default … #1224
This file contains hidden or 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: Run terrafmt | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| push: | |
| merge_group: | |
| jobs: | |
| terrafmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout should always be before setup-go to ensure caching is working | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.0 | |
| - name: Run terrafmt on documentation | |
| run: go tool terrafmt fmt --verbose --check ./docs |