Skip to content

backup: wip

backup: wip #4

Workflow file for this run

name: Run Automated Tests
on:
workflow_call:
workflow_dispatch:
push:
branches:
- '**'
- '!develop'
- '!main'
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.12
architecture: x64
- name: Install requirements-dev.txt
run: pip install -r requirements-dev.txt
- name: Run docker-compose
run: cd ./tests-local-environment; docker compose up -d
- name: Run automated tests
run: pytest