Skip to content

tests branch

tests branch #16

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
kubectl config view -o yaml
# we might need to set KUBECONFIG here as well
# - 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