Keep float operations on 32-bits and using std namespace for math fun… #383
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Cpplint | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 5 * * 1" | |
push: | |
tags: ["v*"] | |
branches: ["*"] | |
paths: ["**/*.h", "**/*.cpp"] | |
pull_request: | |
paths: ["**/*.h", "**/*.cpp"] | |
jobs: | |
cpplint: | |
name: cpplint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
key: ${{ runner.os }}-cpplint | |
path: ~/.cache/pip | |
- name: Pyhton | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: cpplint | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade cpplint | |
cpplint \ | |
--repository=. \ | |
--recursive \ | |
--filter=-whitespace/line_length,-whitespace/braces,-whitespace/comments,-runtime/indentation_namespace,-whitespace/indent,-readability/braces,-whitespace/newline,-readability/todo,-build/c++11,-runtime/references \ | |
--exclude=lib/DimmableLight \ | |
--exclude=lib/ESPDASHPro \ | |
--exclude=lib/MycilaDimmer/doc \ | |
--exclude=lib/WebSerialPro \ | |
lib \ | |
include \ | |
src |