Skip to content

Unit tests for the matcher, resolves #21 #96

Unit tests for the matcher, resolves #21

Unit tests for the matcher, resolves #21 #96

Workflow file for this run

name: linter
on:
pull_request:
types: [ready_for_review]
jobs:
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
files-changed-only: true
thread-comments: true
- name: Fail fast?!
if: steps.linter.outputs.checks-failed != 0
run: |
echo "some linter checks failed. ${{ steps.linter.outputs.checks-failed }}"