Skip to content

Add WinRT event handlers to nocli service range start command #848

Add WinRT event handlers to nocli service range start command

Add WinRT event handlers to nocli service range start command #848

Workflow file for this run

name: cpp-linter
on:
workflow_call:
workflow_dispatch:
pull_request:
branches: [ develop ]
paths-ignore: [
'.github',
'assets/*',
'build/*',
'**/notstd/**',
'ports/**'
]
jobs:
cpp-linter:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Lint changes
uses: cpp-linter/cpp-linter-action@v2.3.0
id: linter
with:
style: file
lines-changed-only: true
ignore: '.github|lib/shared/notstd|windows/shared/notstd'
tidy-checks: ''
- name: Compliance check
if: steps.linter.outputs.checks-failed > 0
run: |
echo ${{ steps.linter.outputs.checks-failed }} violations found
exit 1