Release v1.1.0 (#26) #5
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: Test Provider | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build & test Terraform provider | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Terraform latest | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_wrapper: false | |
- name: Build provider | |
run: | | |
make install | |
~/go/bin/terraform-provider-solacebrokerappliance version | |
~/go/bin/terraform-provider-solacebrokerappliance help | |
Plugin-Integration-Test: | |
needs: build | |
uses: ./.github/workflows/provider-test-pipeline.yml | |
secrets: inherit | |
Plugin-Acceptance-Test: | |
needs: build | |
uses: ./.github/workflows/provider-acceptance-test.yml | |
secrets: inherit | |
CLI-Integration-Test: | |
needs: build | |
uses: ./.github/workflows/cli-test-pipeline.yml | |
secrets: inherit |