Skip to content

Merge branch 'add_remarks_for_empty_ebd' into 285-add-ebd-names-in-js… #841

Merge branch 'add_remarks_for_empty_ebd' into 285-add-ebd-names-in-js…

Merge branch 'add_remarks_for_empty_ebd' into 285-add-ebd-names-in-js… #841

Workflow file for this run

name: "Unittests"
on: [push]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
os: [ubuntu-latest] # we dropped windows-latest because the kroki container somehow wasn't available for windows10/amd64
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Create .env file
run: python create_env_file.py
- name: Start containers
run: docker compose up -d
- name: Run the Unit Tests via Tox
run: |
tox -e tests