ci: github: bump the actions-deps group across 1 directory with 10 updates #70
Workflow file for this run
This file contains 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
# Copyright (c) 2023 Intel Corporation. | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Misc. Pylib Scripts TestSuite | |
on: | |
push: | |
branches: | |
- main | |
- v*-branch | |
paths: | |
- 'scripts/pylib/build_helpers/**' | |
- '.github/workflows/pylib_tests.yml' | |
pull_request: | |
branches: | |
- main | |
- v*-branch | |
paths: | |
- 'scripts/pylib/build_helpers/**' | |
- '.github/workflows/pylib_tests.yml' | |
permissions: | |
contents: read | |
jobs: | |
pylib-tests: | |
name: Misc. Pylib Unit Tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11', '3.12', '3.13'] | |
os: [ubuntu-22.04] | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.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 pytest for build_helpers | |
env: | |
ZEPHYR_BASE: ./ | |
ZEPHYR_TOOLCHAIN_VARIANT: zephyr | |
run: | | |
echo "Run build_helpers tests" | |
PYTHONPATH=./scripts/tests pytest ./scripts/tests/build_helpers |