Skip to content

Update - 2026-September #630

Update - 2026-September

Update - 2026-September #630

Workflow file for this run

#
# ci-unit-tests.yml
# Build and execute unit tests to catch functional issues in code
#
name: CI - Unit Tests
on:
pull_request:
branches:
- 2026-September
paths-ignore:
- configurations/**
- display assets/**
- data/**
- docs/**
- docker/**
- slicer scripts/**
- test/**
- themes/**
- Marlin/tests/**
- "**/*.md"
push:
branches:
- 2026-September
paths-ignore:
- configurations/**
- display assets/**
- data/**
- docs/**
- docker/**
- slicer scripts/**
- test/**
- themes/**
- Marlin/tests/**
- "**/*.md"
jobs:
# This runs all unit tests as a single job. While it should be possible to break this up into
# multiple jobs, they currently run quickly and finish long before the compilation tests.
run_unit_tests:
name: Unit Test
# These tests will only be able to run on the bugfix-2.1.x branch, until the next release
# pulls them into additional branches.
if: github.repository == 'classicrocker883/MRiscoCProUI'
runs-on: ubuntu-latest
steps:
- name: Check out the PR
uses: actions/checkout@v7.0.0
- name: Cache pip
uses: actions/cache@v6.1.0
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-unit-v1-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-unit-v1-
- name: Cache PlatformIO
uses: actions/cache@v6.1.0
with:
path: |
~/.platformio
.pio/build
.pio/libdeps
key: ${{ runner.os }}-pio-tests-v1-${{ hashFiles('**/lockfiles', '**/platformio.ini') }}
restore-keys: |
${{ runner.os }}-pio-tests-v1-
- name: Select Python 3.13
uses: actions/setup-python@v6.3.0
with:
python-version: "3.13"
architecture: "x64"
- name: Install PlatformIO
run: |
python3 -m pip install -U pip wheel platformio
pio upgrade --dev
pio pkg update --global
- name: Run All Unit Tests
run: |
make unit-test-all-local