mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
1408f3f96e
Also add the test to 'python-tests' GitHub actions.
35 lines
863 B
YAML
35 lines
863 B
YAML
name: tools-test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- '*'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
jobs:
|
|
python-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install tox
|
|
python -m pip install kconfiglib
|
|
- name: Test backport_pr
|
|
run: cd dist/tools/backport_pr && tox
|
|
- name: Test compile_and_test_for_board
|
|
run: cd dist/tools/compile_and_test_for_board && tox
|
|
- name: Test riotctrl_shell
|
|
run: cd dist/pythonlibs/riotctrl_shell && tox
|
|
- name: Test kconfig script
|
|
run: cd dist/tools/kconfiglib/tests && ./test.sh
|