Skip to content

refa: changed structure of unit tests and added tags input validation #4

refa: changed structure of unit tests and added tags input validation

refa: changed structure of unit tests and added tags input validation #4

Workflow file for this run

name: Test
on:
push:
branches: ["**"]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: latest
- name: Init Terraform
run: terraform init
- name: Run Terraform Test
run: terraform test
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}