Readme and license updates, fixes issue #56 #1
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@v3 | ||
with: | ||
go-version: "1.20" | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
- name: Set up Terraform latest | ||
uses: hashicorp/setup-terraform@v2 | ||
with: | ||
terraform_wrapper: false | ||
- name: Build provider | ||
run: | | ||
go mod tidy | ||
go fmt | ||
go install . | ||
~/go/bin/terraform-provider-solacebroker version | ||
~/go/bin/terraform-provider-solacebroker help | ||
Plugin-Integration-Test: | ||
needs: build | ||
uses: ./.github/workflows/provider-build-pipeline.yml | ||
Check failure on line 36 in .github/workflows/core-pipeline-main-branch-only.yml GitHub Actions / .github/workflows/core-pipeline-main-branch-only.ymlInvalid workflow file
|
||
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-build-pipeline.yml | ||
secrets: inherit |