Skip to content

Try to make sense of 998DR encoder #157

Try to make sense of 998DR encoder

Try to make sense of 998DR encoder #157

Workflow file for this run

name: cpp-linter
on:
pull_request:
types: [opened, reopened, synchronize]
paths: ['**.c', '**.h', '**.cpp', '**.hpp', '.clang-format']
push:
paths: ['**.c', '**.h', '**.cpp', '**.hpp', '.clang-format']
workflow_dispatch: # Manually invoked by user.
jobs:
cpp-linter:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: cpp-linter/cpp-linter-action@v2
id: linter
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: file
version: 18
lines-changed-only: diff
thread-comments: true
file-annotations: false
- name: Fail fast?!
if: steps.linter.outputs.checks-failed > 0
run: |
echo "Some files failed the linting checks!"
# for actual deployment
# run: exit 1