Bump github.com/hashicorp/terraform-plugin-go from 0.21.0 to 0.22.0 #47
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
name: Test Suite | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'README.md' | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
docs-sync: | |
name: Ensure that the user documentation is in-sync | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/bootstrap | |
- run: nix develop . --command just stale-docs | |
docs-style: | |
name: Run style and spelling checks against user documentation | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/bootstrap | |
- run: nix develop . --command just stylecheck | |
acceptance: | |
name: Run the provider tests including acceptance tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/bootstrap | |
- run: nix develop . --command just acceptance-test | |
lint: | |
name: Perform go linting checks | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/bootstrap | |
- name: Run golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: latest |