Skip to content

Commit

Permalink
Made linting not fail fast
Browse files Browse the repository at this point in the history
Signed-off-by: Timm Ruppert <[email protected]>
  • Loading branch information
TimmRuppert committed Oct 28, 2024
1 parent c66deda commit 4342224
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:
database: 'build'
ignore: 'tests'
- name: Check Lint Results
if: steps.cpplinter.outputs.checks-failed > 0
run: exit 1
if: steps.linter.outputs.checks-failed > 0
run: echo "Some files failed the linting checks!"
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#include "Reader.h"
#include <fstream>
#include <functional>

namespace osi3 {

Expand Down

0 comments on commit 4342224

Please sign in to comment.