| # Copyright (c) 2020 Linaro Limited. |
| # Copyright (c) 2020 Nordic Semiconductor ASA |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| name: Devicetree script tests |
| |
| on: |
| push: |
| branches: |
| - main |
| - v*-branch |
| paths: |
| - 'scripts/dts/**' |
| - '.github/workflows/devicetree_checks.yml' |
| pull_request: |
| branches: |
| - main |
| - v*-branch |
| paths: |
| - 'scripts/dts/**' |
| - '.github/workflows/devicetree_checks.yml' |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| devicetree-checks: |
| name: Devicetree script tests |
| runs-on: ${{ matrix.os }} |
| strategy: |
| matrix: |
| python-version: ['3.10', '3.11', '3.12', '3.13'] |
| os: [ubuntu-22.04, macos-14, windows-2022] |
| steps: |
| - name: checkout |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 |
| |
| - name: Set up Python ${{ matrix.python-version }} |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 |
| with: |
| python-version: ${{ matrix.python-version }} |
| cache: pip |
| cache-dependency-path: scripts/requirements-actions.txt |
| |
| - name: Install Python packages |
| run: | |
| pip install -r scripts/requirements-actions.txt --require-hashes |
| |
| - name: run tox |
| working-directory: scripts/dts/python-devicetree |
| run: | |
| tox |