Skip to content

New API - Post review deployment #8

New API - Post review deployment

New API - Post review deployment #8

Workflow file for this run

name: Lint
on:
push:
branches: [ "**" ]
paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake']
pull_request:
branches: [ "**" ]
paths: ['**.c', '**.cpp', '**.h', '**.hpp', '**.cxx', '**.hxx', '**.cc', '**.hh', '**CMakeLists.txt', 'meson.build', '**.cmake']
jobs:
build:
name: Lint all cpp
runs-on: ubuntu-latest
steps:
- name: Fetch up-cpp
uses: actions/checkout@v4
- name: Run linters
uses: cpp-linter/cpp-linter-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: 'file' # read .clang-format for configuration
tidy-checks: '' # Read .clang-tidy for configuration
extra-args: '-std=c++17 -Iinclude'