From 97c491737c91a858dba1cc8ebb31ba4f47e40953 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Thu, 18 Mar 2021 17:12:36 +0900 Subject: [PATCH] ci: run acceptance tests with multiple Terraform versions (#129) * ci: run acceptance tests with multiple Terraform versions * chore(test): bumps tf version to 0.14.8 --- .github/workflows/acc-test.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/acc-test.yaml b/.github/workflows/acc-test.yaml index d06754ff..9932f510 100644 --- a/.github/workflows/acc-test.yaml +++ b/.github/workflows/acc-test.yaml @@ -22,6 +22,11 @@ jobs: runs-on: ubuntu-20.04 strategy: fail-fast: true + matrix: + terraform_version: + - "0.12.30" + - "0.13.6" + - "0.14.8" steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 @@ -43,4 +48,5 @@ jobs: - run: sudo cat /etc/default/docker - run: sudo service docker restart - run: make testacc - + env: + TF_ACC_TERRAFORM_VERSION: ${{ matrix.terraform_version }}