fix(gui): fix provider switching state machine and synchronize detail… #74
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: CI | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| validate: | |
| name: Validate source tree | |
| runs-on: windows-latest | |
| timeout-minutes: 20 | |
| env: | |
| PYTHONIOENCODING: "utf-8" | |
| INVOICE_HUB_TEST_MODE: "1" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.11 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: "pip" | |
| cache-dependency-path: | | |
| requirements.txt | |
| requirements-build.txt | |
| - name: Install Python dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install --disable-pip-version-check --no-input --prefer-binary --no-compile -r requirements.txt -r requirements-build.txt | |
| - name: Verify CLI help output | |
| run: python -m scripts.invoice_fetch --help | |
| - name: Run unit tests | |
| run: python -m unittest discover -v -s tests -p "test_*.py" | |
| - name: Run repository privacy gate | |
| run: python scripts/check_repo_privacy.py | |
| - name: Run public export/source tree gate | |
| run: python scripts/check_public_export.py . | |
| - name: Compile-check Python sources | |
| run: python -m compileall -q scripts/invoice_fetch |