-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 882 Bytes
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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