Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
acelyc111 committed Aug 5, 2024
1 parent 02b563a commit 24fe971
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/lint_and_test_cpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,14 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: 'file' # Use .clang-format config file
style: '' # Disabled. Use .clang-format config file if specify 'file'.
tidy-checks: '' # Use .clang-tidy config file
files-changed-only: false
thread-comments: false
extra-args: '-std=c++17 -Wall'
- name: Fail fast?!
if: steps.linter.outputs.checks-failed != 0
run: echo "some linter checks failed. ${{ steps.linter.outputs.checks-failed }}"
if: steps.linter.outputs.checks-failed > 0
run: exit 1

iwyu:
name: IWYU
Expand Down
2 changes: 1 addition & 1 deletion .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ header:
# Copyright (c) 2017 Guillaume Papin
- 'build-support/run-clang-format.py'
# The MIT License (MIT), Copyright (c) 2015 Microsoft Corporation
- 'build-support/compile_thrift.py'
- 'cmake_modules/BaseFunctions.cmake'
- 'docs/rdsn-README.md'
- 'idl/command.thrift'
Expand All @@ -120,7 +121,6 @@ header:
- 'idl/metadata.thrift'
- 'idl/meta_admin.thrift'
- 'idl/replica_admin.thrift'
- 'build-support/compile_thrift.py'
- 'scripts/learn_stat.py'
- 'src/runtime/api_layer1.h'
- 'src/runtime/api_task.h'
Expand Down

0 comments on commit 24fe971

Please sign in to comment.