Skip to content

[dl] Download STM32CubeProgrammer database for memory sizes #29

[dl] Download STM32CubeProgrammer database for memory sizes

[dl] Download STM32CubeProgrammer database for memory sizes #29

Workflow file for this run

name: Run Regression Tests
on:
workflow_dispatch:
pull_request:
jobs:
regressions:
runs-on: ubuntu-latest
steps:
- name: Check out Repository
uses: actions/checkout@v4
- name: Check out Test Docs Repository
uses: actions/checkout@v4
with:
repository: modm-ext/modm-data-test-docs
path: ext/test/regression
- name: Setup Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Python Dependencies
run: |
pip3 install -r tools/requirements.txt .
- name: Run Regression Tests
run: |
make run-regression-tests
- name: Run Ruff Formatter
if: always()
uses: chartboost/ruff-action@v1
with:
src: "./src"
args: "format --check"
- name: Run Ruff Linter
if: always()
uses: chartboost/ruff-action@v1
with:
src: "./src"
args: "check"