project: Pin Python dependencies #1068
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 Test | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| # Cancel ongoing builds on new changes | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| # This is enough to find many quoting issues | |
| with: | |
| path: "./check out" | |
| - name: Set up Python | |
| uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| # Specify a pip cache for faster installs | |
| cache: pip | |
| cache-dependency-path: "./check out/requirements-install-tox.txt" | |
| - name: Display Python version | |
| run: python -c "import sys; print(sys.version); print(sys.platform)" | |
| - name: Install tox | |
| run: pip install -r "./check out/requirements-install-tox.txt" --require-hashes | |
| - name: Run tox | |
| run: tox -c 'check out' -- -W error | |
| - name: Upload coverage reports | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: coverage-${{ matrix.os }}-${{ matrix.python-version }} | |
| path: "./check out/.coverage" | |
| include-hidden-files: true | |
| coverage-report: | |
| runs-on: ubuntu-latest | |
| needs: ["build"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Set up Python | |
| uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0 | |
| with: | |
| python-version: '3.13' | |
| - name: Download all coverage artifacts | |
| uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1 | |
| - name: Install coverage | |
| run: pip3 install coverage | |
| - name: Create coverage report | |
| run: | | |
| coverage combine coverage-*/.coverage | |
| coverage xml | |
| - name: Upload combined coverage report | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: coverage-combined | |
| path: coverage.xml | |
| - name: Upload coverage to Codecov | |
| if: github.repository_owner == 'zephyrproject-rtos' | |
| uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # v5.4.0 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: ${{ github.repository_owner }}/west |