feat(terraform): add commented terragrunt_fmt pre-commit hook (#4) #23
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
| # Test workflow — runs all tests via the dev-toolchain container. | |
| # This workflow runs as a separate status check on PRs. | |
| # To block merges on failure, enable branch protection: | |
| # Settings > Branches > Require status checks > Select "test" | |
| name: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/devrail-dev/dev-toolchain:v1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run test | |
| run: make _test |