Add GPX_STATUS_x_RX_TRAFFIC_NOT_DECTECTED to GPX_STATUS. (#804) #2406
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
name: Code Linter (C++) | |
on: | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
type: choice | |
options: | |
- info | |
- warning | |
- debug | |
push: | |
branches: | |
- '**' | |
pull_request: | |
- 'development' | |
- 'dev_v2' | |
- 'master' | |
jobs: | |
cpp-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cpp-linter/cpp-linter-action@main | |
id: linter | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
style: file | |
files-changed-only: true | |
- name: Fail fast?! | |
if: steps.linter.outputs.checks-failed != 0 | |
run: | | |
echo "some linter checks failed. ${{ steps.linter.outputs.checks-failed }}" | |
# for actual deployment | |
# run: exit 1 |