[T-8402] Support custom_bucket in source creation (#37) #117
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: build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.23.x' | |
| - uses: hashicorp/setup-terraform@v3 | |
| with: | |
| terraform_version: 'latest' | |
| - run: make lint | |
| check_docs: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.23.x' | |
| - uses: hashicorp/setup-terraform@v3 | |
| with: | |
| terraform_version: 'latest' | |
| - name: Generate docs automatically | |
| run: make gen | |
| - name: Check no versioned file has been updated | |
| uses: numtide/clean-git-action@v1 |