Skip to content

update

update #26

Workflow file for this run

# name: Integration tests
# on:
# push:
# branches:
# - "main"
# pull_request:
# branches:
# - "main"
# - "**" # every single branch
# jobs:
# tests:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: install tools
# run: |
# chmod +x ./scripts/install.sh
# ./scripts/install.sh
# - name: apply resources and verify
# run: |
# chmod +x ./scripts/set-env-vars.sh
# . ./scripts/set-env-vars.sh
# echo $NAMESPACE
# chmod +x ./scripts/verify.sh
# ./scripts/verify.sh
# # now I want to use both kuttl and terratest to validate the tests
# # so I probably need the following
# # in the tests dir -> split it out
# # need a script to run the tests
# # probably needs an image as well - unless we can install on ubuntu