build(deps-dev): bump pyinstaller from 6.15.0 to 6.17.0 #624
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: Code Coverage | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| - devel | |
| - pure-py | |
| paths: | |
| - "ktoolbox/**" | |
| - "tests/**" | |
| - ".github/actions/setup-python/**" | |
| - ".github/workflows/codecov.yml" | |
| - "pyproject.toml" | |
| - "prod.env" | |
| pull_request: | |
| paths: | |
| - "ktoolbox/**" | |
| - "tests/**" | |
| - ".github/actions/setup-python/**" | |
| - ".github/workflows/codecov.yml" | |
| - "pyproject.toml" | |
| - "prod.env" | |
| jobs: | |
| test: | |
| name: Test With Coverage | |
| runs-on: ${{ matrix.os }} | |
| concurrency: | |
| group: test-coverage-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python-version }} | |
| cancel-in-progress: true | |
| strategy: | |
| fail-fast: false | |
| # macos-14 aka. macos-latest has switched to being an ARM runner, only supporting newer versions of Python. | |
| # https://github.com/actions/setup-python/issues/855#issuecomment-2096792205 | |
| matrix: | |
| os: [ ubuntu-latest, windows-latest, macos-15 ] | |
| python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ] | |
| exclude: | |
| - os: macos-15 | |
| python-version: "3.8" | |
| - os: macos-15 | |
| python-version: "3.9" | |
| - os: macos-15 | |
| python-version: "3.10" | |
| include: | |
| - os: macos-15-intel | |
| python-version: "3.8" | |
| - os: macos-15-intel | |
| python-version: "3.9" | |
| - os: macos-15-intel | |
| python-version: "3.10" | |
| env: | |
| PYTEST_REPORT_FILENAME: report-${{ matrix.os }}-${{ matrix.python-version }}.html | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python environment | |
| uses: ./.github/actions/setup-python | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run Pytest | |
| run: | | |
| poetry run pytest -v --capture=sys --cov --cov-report=xml tests/ | |
| - name: Upload coverage report | |
| uses: codecov/codecov-action@v4 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| with: | |
| files: coverage.xml | |
| flags: ${{ matrix.os }}-${{ matrix.python-version }} |