Skip to content

r/aws_neptunegraph_graph: Adding import from S3, Neptune database cluster, and snapshot. #47647

r/aws_neptunegraph_graph: Adding import from S3, Neptune database cluster, and snapshot.

r/aws_neptunegraph_graph: Adding import from S3, Neptune database cluster, and snapshot. #47647

# Copyright IBM Corp. 2014, 2026
# "SPDX-License-Identifier: MPL-2.0"
name: Acceptance Test Directory Linting
on:
push:
branches:
- main
- "release/**"
pull_request:
paths:
- .github/workflows/acctest-terraform-lint.yml
- .ci/.tflint.hcl
- .ci/tools/go.mod
- go.sum
- 'internal/service/**/*.tf'
## NOTE: !!!
## When changing these workflows, ensure that the following is updated:
## - Documentation: docs/continuous-integration.md
## - Documentation: docs/makefile-cheat-sheet.md
## - Makefile: ./GNUmakefile
jobs:
terrafmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- uses: hashicorp/setup-terraform@5e8dbf3c6d9deaf4193ca7a8fb23f2ac83bb6c85
- run: terraform fmt -recursive -check
tflint:
name: Validate Acceptance Test Terraform
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
name: Cache plugin dir
continue-on-error: true
timeout-minutes: 2
with:
path: ~/.tflint.d/plugins
key: ${{ runner.os }}-tflint-${{ hashFiles('.ci/.tflint.hcl') }}
- run: cd .ci/tools && go install github.com/terraform-linters/tflint
- run: tflint --config .ci/.tflint.hcl --init
- run: |
# tflint always resolves config flies relative to the working directory when using --recursive
TFLINT_CONFIG="$(pwd -P)/.ci/.tflint.hcl"
tflint --config "${TFLINT_CONFIG}" --chdir=./internal/service --recursive