Skip to content

Added the latest side-loaded OTA firmware as a menu item in Applications #496

Added the latest side-loaded OTA firmware as a menu item in Applications

Added the latest side-loaded OTA firmware as a menu item in Applications #496

Workflow file for this run

name: code-quality
on:
pull_request: {}
push:
branches:
- main
- dev
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
clang-format:
runs-on: ubuntu-latest
container: ubuntu:24.04
steps:
- uses: actions/checkout@v3
- name: Install and Run clang-format
run: |
apt update -y
apt install -y make clang-format-20
make clang-format
continue-on-error: false
cppcheck:
runs-on: ubuntu-latest
container: ubuntu:24.04
steps:
- uses: actions/checkout@v3
- name: Install and Run cppcheck
run: |
apt update -y
apt install -y make cppcheck
make cppcheck
continue-on-error: false