Bump github.com/hashicorp/terraform-plugin-framework from 1.8.0 to 1.9.0 #38
Workflow file for this run
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
# Terraform Provider CI workflow. | |
name: Continuous Integration | |
# This GitHub action runs your tests for each pull request and push. | |
# Optionally, you can turn it on using a schedule for regular testing. | |
on: | |
pull_request: | |
paths-ignore: | |
- "README.md" | |
- "DEVELOP.md" | |
- "LICENSE.md" | |
push: | |
paths-ignore: | |
- "README.md" | |
- "DEVELOP.md" | |
- "LICENSE.md" | |
# Testing only needs permissions to read the repository contents. | |
permissions: | |
contents: read | |
jobs: | |
# Ensure project builds before running testing matrix | |
scan: | |
name: Scan | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
go-version: "1.22.0" | |
cache: true | |
- name: Download and extract XenServer SDK | |
uses: ./.github/actions/setup-xenserver-sdk | |
with: | |
# TODO: Update the URL | |
XENSERVER_SDK_URL: https://github.com/initisan/terraform-provider-hashicups/raw/main/XenServer-SDK.zip | |
- name: Run linters | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: latest | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
go-version: "1.22.0" | |
cache: true | |
- name: Download and extract XenServer SDK | |
uses: ./.github/actions/setup-xenserver-sdk | |
with: | |
# TODO: Update the URL | |
XENSERVER_SDK_URL: https://github.com/initisan/terraform-provider-hashicups/raw/main/XenServer-SDK.zip | |
- run: go mod download | |
- run: go build -v . | |
- 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) | |
# TODO: | |
# As the UT now using un-mocked XenAPI, so skip the UT in CI for now. | |
# test: |