Skip to content

feat: Switch clang tools from static binaries to wheels (#368) #901

feat: Switch clang tools from static binaries to wheels (#368)

feat: Switch clang tools from static binaries to wheels (#368) #901

Workflow file for this run

name: cpp-linter
on:
push:
paths:
- "docs/examples/demo/*"
pull_request:
paths:
- "docs/examples/demo/*"
jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- 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: false
thread-comments: false
- 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