Fix log levels for STM32 conflict #32
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
name: Tests | |
on: | |
push: | |
branches: [main, devel, freshness] | |
pull_request: | |
branches: [main, devel, freshness] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Python Wheel | |
run: pip install wheel | |
- name: Install PlatformIO Core | |
run: pip install -U platformio | |
- name: Install valgrind | |
run: sudo apt install -y valgrind | |
- name: Run GoogleTest | |
run: python -m platformio test -v -e native_test -a "--gtest_shuffle" -a "--gtest_repeat=5" |