Skip to content

Reformat some function param docs for consistency #1

Reformat some function param docs for consistency

Reformat some function param docs for consistency #1

Workflow file for this run

name: cpp-linter
on:
push:
branches:
- main
#paths:
# - "src/*"
pull_request:
branches:
- main
#paths:
# - "src/*"
jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cpp-linter/cpp-linter-action@main
id: linter
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: file
repo-root: "src"
- name: Fail fast
if: steps.linter.outputs.checks-failed != 0
run: exit 1