Skip to content

ci: Update 3rd-party components #139

ci: Update 3rd-party components

ci: Update 3rd-party components #139

Workflow file for this run

name: cpp-linter
on: [push, pull_request]
permissions:
contents: read
jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: cpp-linter/cpp-linter-action@948cea872508ea44123a1e3d8638a5b828a409af
id: linter
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: ''
files-changed-only: false
ignore: crypto
- 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