chore: Updates mongodbatlas_cluster
to consume selected processArgs fields from the createCluster/updateCluster APIs
#9309
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: 'Code Health' | |
# Set of validations run on each pull request and merged commits to master. | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-excluding-paths | |
- '*.md' | |
- 'examples/**' | |
- 'LICENSE' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b | |
with: | |
go-version-file: 'go.mod' | |
- name: Build | |
run: make build | |
unit-test: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write # Needed by sticky-pull-request-comment | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
# Avoid: cannot run Terraform provider tests: error calling terraform version command: fork/exec /tmp/plugintest-terraformXXX/terraform: text file busy also speeds up the tests as terraform will already exist on path. | |
# Also speeds up the tests | |
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd | |
with: | |
terraform_version: '1.11.x' | |
terraform_wrapper: false | |
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b | |
with: | |
go-version-file: 'go.mod' | |
- name: Unit Test | |
run: make test | |
env: | |
MONGODB_ATLAS_PREVIEW_PROVIDER_V2_ADVANCED_CLUSTER: "true" | |
lint: | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Install Go | |
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b | |
with: | |
go-version-file: 'go.mod' | |
cache: false # see https://github.com/golangci/golangci-lint-action/issues/807 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd | |
with: | |
version: v2.0.2 # Also update GOLANGCI_VERSION variable in GNUmakefile when updating this version | |
- name: actionlint | |
run: | | |
make tools | |
echo "::add-matcher::.github/actionlint-matcher.json" | |
actionlint -color | |
shell: bash | |
shellcheck: | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Run ShellCheck | |
uses: bewuethr/shellcheck-action@d01912909579c4b1a335828b8fca197fbb8e0aa4 | |
generate-doc-check: | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- run: make tools generate-docs-all | |
- name: Find mutations | |
id: self_mutation | |
run: |- | |
git add . | |
git diff --staged --patch --exit-code > .repo.patch || echo "self_mutation_happened=true" >> "${GITHUB_OUTPUT}" | |
- name: Fail build on mutation | |
if: steps.self_mutation.outputs.self_mutation_happened | |
run: |- | |
echo "::error::Files were changed during build (see build log). If this was triggered from a fork, you will need to update your branch." | |
cat .repo.patch | |
exit 1 | |
call-acceptance-tests-workflow: | |
needs: [build, lint, shellcheck, unit-test, generate-doc-check] | |
secrets: inherit | |
uses: ./.github/workflows/acceptance-tests.yml | |
with: | |
reduced_tests: true |