Remove local urls #120
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: Test ARLAS Exploration stack | |
on: push | |
jobs: | |
simple-stack: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Start simple stack | |
run: ./start.sh | |
- name: Run endpoints tests | |
run: ./scripts/test_endpoints.sh | |
- name: Install arlas_cli | |
run: pip3.10 install arlas_cli | |
- name: Init configurations | |
run: ./scripts/init_arlas_cli_confs.sh | |
- name: Init stack with data | |
run: ./scripts/init_stack_with_data.sh local | |
- name: Stop stack | |
run: ./stop.sh | |
iam-stack: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Start iam stack | |
run: ./start.sh iam | |
- name: Run endpoints tests | |
run: ./scripts/test_endpoints.sh iam | |
- name: Install arlas_cli | |
run: pip3.10 install arlas_cli | |
- name: Init configurations | |
run: ./scripts/init_arlas_cli_confs.sh | |
- name: Init stack with data | |
run: ./scripts/init_stack_with_data.sh local.iam.admin | |
- name: Stop stack | |
run: ./stop.sh |