Improving addListOfRows guessing style when first row has None values. Now it iterates until the first not None value #111
Workflow file for this run
This file contains hidden or 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: Python application | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| - name: Install LibreOffice and uno dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libreoffice python3-uno imagemagick gettext | |
| - name: Install python environment | |
| run: | | |
| python -m venv .venv --system-site-packages | |
| .venv/bin/pip install . | |
| .venv/bin/pip install pytest envwrap # Added envwrap to satisfy tqdm optional dependency and avoid uno import hook failure | |
| - name: Run Tests | |
| run: | | |
| .venv/bin/pytest -v # Correct venv path and remove 'sudo' |