Skip to content

Add (untested) slow path and make performance test compile #93

Add (untested) slow path and make performance test compile

Add (untested) slow path and make performance test compile #93

Workflow file for this run

# Source: https://github.com/marketplace/actions/c-c-linter
name: cpp-linter
# Documentation is here: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
on: pull_request
jobs:
cpp-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cpp-linter/cpp-linter-action@v2
id: linter
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: file
# An empty string means "use the .clang-tidy file"
tidy-checks: ""
lines-changed-only: false
files-changed-only: true
- name: Fail Fast?!
if: steps.linter.outputs.checks-failed > 0
run: echo "Some files failed the linting checks!"
# for actual deployment
# run: exit 1