Skip to content

Adapter Instances need to have a unique id #19

Adapter Instances need to have a unique id

Adapter Instances need to have a unique id #19

Workflow file for this run

name: cpp-linter
on:
pull_request:
branches: [ "**" ]
paths: [ "**.c", "**.cpp", "**.h", "**.hpp", "**.cxx", "**.hxx", "**.cc", "**.hh", ".clang-format", ".clang-format-ignore" ]
push:
branches: [ "**" ]
paths: [ "**.c", "**.cpp", "**.h", "**.hpp", "**.cxx", "**.hxx", "**.cc", "**.hh", ".clang-format", ".clang-format-ignore" ]
permissions:
pull-requests: write
contents: read
jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: cpp-linter/cpp-linter-action@8e85cd02c8c3fe3ae527c94b5683fe2366b144ed # v2.20.0
id: linter
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: 20
style: 'file' # use .clang-format config file
tidy-checks: '-*' # disable clang-tidy
step-summary: true
files-changed-only: false
- name: Fail fast
if: steps.linter.outputs.checks-failed > 0
run: exit 1