Skip to content

Update resource catalogue helm chart to 1.4 release for final testing #216

Update resource catalogue helm chart to 1.4 release for final testing

Update resource catalogue helm chart to 1.4 release for final testing #216

Workflow file for this run

name: Test workflow
# limit when the action is run
on:
push:
# Sequence of patterns matched against refs/heads
branches:
- master
- develop
- 'release/**'
pull_request:
branches:
- master
- develop
- 'release/**'
jobs:
# Set the job key. The key is displayed as the job name
# when a job name is not provided
prepare-system:
# Name the Job
name: Prepare system to run tests
# Set the type of machine to run on
runs-on: ubuntu-latest
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
- name: Install ubuntu dependencies
run: sudo apt-get install jq python3-venv
- name: Install kubectl
run: ./bin/install-kubectl.sh
- name: Install minikube
run: ./minikube/setup-minikube.sh github
- name: Install terraform
run: ./bin/install-terraform.sh
- name: Deploy EOEPCA
run: ./terraform/test/deployEOEPCA.sh
- name: Run acceptance tests
run: ./test/acceptance/acceptance_tests.sh