Skip to content

SAAS-28325: Enhance Host Assurance Policy Implementation and Testing & Improve GitHub Actions workflow for Terraform testing #890

SAAS-28325: Enhance Host Assurance Policy Implementation and Testing & Improve GitHub Actions workflow for Terraform testing

SAAS-28325: Enhance Host Assurance Policy Implementation and Testing & Improve GitHub Actions workflow for Terraform testing #890

Workflow file for this run

# 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 * * *'
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')
name: Sequential Tests
needs: build
runs-on: ubuntu-latest
timeout-minutes: 120
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
# Run tests for each version sequentially
- name: Run TF acceptance tests
shell: bash
env:
TF_ACC: "1"
AQUA_URL: ${{ secrets.AQUA_URL }}
AQUA_USER: ${{ secrets.AQUA_USER }}
AQUA_PASSWORD: ${{ secrets.AQUA_PASSWORD }}
run: |
versions=("0.15.5" "0.14.11" "1.1.2" "1.5.3")
for version in "${versions[@]}"; do
echo "Running tests for Terraform version ${version}"
TF_ACC_TERRAFORM_VERSION="${version}" go test -v -cover ./aquasec/ -timeout 15m
done