Build & Test #2923
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: Build & Test | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
push: | |
branches: | |
- 'main' | |
paths-ignore: | |
- 'README.md' | |
schedule: | |
- cron: '0 13 * * *' | |
repository_dispatch: | |
types: [deploy-success] | |
jobs: | |
build: | |
name: Go build | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: Build | |
run: | | |
go build -v . | |
generate: | |
name: Go generate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- uses: actions/checkout@v3 | |
- run: go generate ./... | |
- name: git diff | |
run: | | |
git diff --compact-summary --exit-code || \ | |
(echo; echo "Unexpected difference in directories after code generation. Run 'go generate ./...' command and commit."; exit 1) | |
# run acceptance tests in a matrix with Terraform core versions | |
test: | |
name: Matrix test | |
needs: build | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
# list whatever Terraform versions here you would like to support | |
terraform: | |
# - '0.12.*' | |
# - '0.13.*' | |
# - '0.14.*' | |
- '0.15.*' | |
# - '1.0.*' | |
- '1.1.*' | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
id: go | |
- uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: ${{ matrix.terraform }} | |
terraform_wrapper: false | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: TF acceptance tests | |
timeout-minutes: 10 | |
run: go test -v ./... | |
env: | |
TF_ACC: "1" | |
TF_VAR_checkly_api_key: ${{ secrets.CHECKLY_API_KEY }} | |
TF_VAR_checkly_account_id: ${{ secrets.CHECKLY_ACCOUNT_ID }} | |
CHECKLY_ACCOUNT_ID: ${{ secrets.CHECKLY_ACCOUNT_ID }} | |
CHECKLY_API_URL: ${{ secrets.CHECKLY_API_URL }} | |
CHECKLY_API_KEY: ${{ secrets.CHECKLY_API_KEY }} |