ci tf version update test #891
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
# This GitHub action runs your tests for each commit push and/or PR. Optionally | ||
# you can turn it on using a cron schedule for regular testing. | ||
# | ||
name: Tests | ||
on: | ||
pull_request: | ||
types: [labeled] | ||
paths-ignore: | ||
- 'README.md' | ||
push: | ||
paths-ignore: | ||
- 'README.md' | ||
# For systems with an upstream API that could drift unexpectedly (like most SaaS systems, etc.), | ||
# we recommend testing at a regular interval not necessarily tied to code changes. This will | ||
# ensure you are alerted to something breaking due to an API change, even if the code did not | ||
# change. | ||
# schedule: | ||
# - cron: '0 13 * * *' | ||
env: | ||
# Define Terraform versions here - easy to add/remove versions | ||
tf_versions: > | ||
[ | ||
"0.15.5", | ||
"0.14.11", | ||
"1.1.2", | ||
"1.5.3" | ||
] | ||
jobs: | ||
build: | ||
if: contains(github.event.pull_request.labels.*.name, 'safe_to_test') | ||
name: Build | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.18' | ||
id: go | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- name: Get dependencies | ||
run: | | ||
go mod download | ||
- name: Build | ||
run: | | ||
go build -v . | ||
test: | ||
if: contains(github.event.pull_request.labels.*.name, 'safe_to_test') | ||
needs: build | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 120 | ||
strategy: | ||
max-parallel: 1 # This makes jobs run sequentially | ||
fail-fast: false | ||
matrix: | ||
terraform: ${{ fromJSON(env.tf_versions) }} | ||
Check failure on line 64 in .github/workflows/test.yml
|
||
name: Test Terraform ${{ matrix.terraform }} | ||
steps: | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.18' | ||
id: go | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- name: Get dependencies | ||
run: | | ||
go mod download | ||
- name: Run TF acceptance tests | ||
uses: nick-fields/retry@v2 | ||
env: | ||
TF_ACC: "1" | ||
TF_ACC_TERRAFORM_VERSION: ${{ matrix.terraform }} | ||
AQUA_URL: ${{ secrets.AQUA_URL }} | ||
AQUA_USER: ${{ secrets.AQUA_USER }} | ||
AQUA_PASSWORD: ${{ secrets.AQUA_PASSWORD }} | ||
with: | ||
max_attempts: 2 | ||
timeout_minutes: 15 | ||
command: go test -v -cover ./aquasec/ -timeout 15m |