Fix QDBusError on Linux #4111
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: Windows | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release | |
| pull_request: | |
| branches: | |
| - main | |
| - release | |
| jobs: | |
| testWin: | |
| runs-on: windows-latest | |
| name: Test Python 3.13 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@v7 | |
| - name: Install UV and Python | |
| uses: astral-sh/setup-uv@v8.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| enable-cache: true | |
| - name: Install Dependencies | |
| run: | | |
| uv sync --no-dev --group test | |
| - name: Build Assets | |
| run: | | |
| uv run --no-sync pkgutils.py sample | |
| - name: Run Tests | |
| run: | | |
| uv run --no-sync coverage run -m pytest -v --timeout=60 | |
| uv run --no-sync coverage xml | |
| - name: Upload to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: true |