update argocd #24
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
# 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 |