diff --git a/.github/workflows/go-terratest.yml b/.github/workflows/go-terratest.yml index 6e82368..21cf0e5 100644 --- a/.github/workflows/go-terratest.yml +++ b/.github/workflows/go-terratest.yml @@ -1,33 +1,36 @@ on: pull_request: - types: [opened, edited, reopened, synchronize] + types: [opened, edited, reopened, synchronize] push: branches: - feature/add-unit-tests - permissions: {} - env: + +permissions: {} + +env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} TF_IN_AUTOMATION: true - jobs: + +jobs: go-tests: - permissions: - contents: read - actions: write - name: Run Go Unit Tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 - with: - go-version: 1.18 - - uses: hashicorp/setup-terraform@651471c36a6092792c552e8b1bef71e592b462d8 # v3.1.1 - with: - terraform_version: ~1.3 - terraform_wrapper: false - - name: Download Go Modules - working-directory: test - run: go mod download - - name: Run Go Tests - working-directory: test - run: go test -v \ No newline at end of file + permissions: + contents: read + actions: write + name: Run Go Unit Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 + with: + go-version: 1.18 + - uses: hashicorp/setup-terraform@651471c36a6092792c552e8b1bef71e592b462d8 # v3.1.1 + with: + terraform_version: ~1.3 + terraform_wrapper: false + - name: Download Go Modules + working-directory: test + run: go mod download + - name: Run Go Tests + working-directory: test + run: go test -v