Test arlas_cli #225
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_cli | |
on: push | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install requirements | |
run: | | |
pip install -r requirements.txt | |
- name: Start the stack | |
run: scripts/start_stack.sh | |
- name: Run tests | |
run: scripts/tests.sh | |
- name: Stop the stack | |
run: scripts/stop_stack.sh |