Skip to content

Add Arduino, C++ and PR title linters #1

Add Arduino, C++ and PR title linters

Add Arduino, C++ and PR title linters #1

Workflow file for this run

---
name: Quality Gates
on:
push:
pull_request:
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
path:
- 'src'
- 'examples'
steps:
- uses: actions/checkout@v4
- name: arduino-lint
uses: arduino/arduino-lint-action@v1
with:
library-manager: update
compliance: strict
- uses: cpp-linter/cpp-linter-action@v2
with:
style: file
files-changed-only: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}