the workflows running unconditionally for each push and each PR are run twice when pushing to a branch that is to be merged by a PR and if that branch is a branch local to the repo (rather than in a fork).
25 lines
789 B
YAML
25 lines
789 B
YAML
name: cpplint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
# prevent push event from triggering if it's part of a PR
|
|
if: github.event_name != 'push' || github.event.pull_request == null
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.x"
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install cpplint
|
|
- name: Linting
|
|
run: |
|
|
cpplint --repository=. --recursive --filter=-build/c++11,-runtime/references,-readability/braces,-whitespace,-legal,-build/include ./src ./include ./lib/Hoymiles ./lib/MqttSubscribeParser ./lib/TimeoutHelper ./lib/ResetReason ./lib/ETHSPI
|