Update Resource Management to 1.4.0 #219
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: 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 |