[#54920] .ci.yml: Added running tuttest in a clear environment #6
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
name: Kenning Zephyr runtime tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
readme-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Install tuttest dependencies | |
run: | | |
sudo apt-get update -qqy | |
sudo apt-get install -qqy --no-install-recommends python3 python3-pip git colorized-logs | |
sudo pip3 install git+https://github.com/antmicro/tuttest.git | |
- name: Run README.md snippets | |
run: | | |
./scripts/test_readme.sh |