chore: initialize monorepo with project scaffolding, configs, and CI setup

This commit is contained in:
oib
2025-09-27 06:05:25 +02:00
commit c1926136fb
171 changed files with 13708 additions and 0 deletions

34
.github/workflows/python-tests.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: Python Project Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: '1.7.1'
- name: Install dependencies
run: |
poetry install --with dev
- name: Run Python test suites
run: |
chmod +x scripts/ci/run_python_tests.sh
./scripts/ci/run_python_tests.sh