Skip to content

Test arlas_cli

Test arlas_cli #225

Workflow file for this run

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