Skip to content

Commit 5714de4

Browse files
authored
Merge pull request #141 from aobolensk/v0.20.1-patch-clang-tidy-19
Add support for clang-tidy-19
2 parents 187ce1c + ba7a1be commit 5714de4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ RUN apt update && \
1010
clang-tidy-16 \
1111
clang-tidy-17 \
1212
clang-tidy-18 \
13+
clang-tidy-19 \
1314
python3 \
1415
python3-pip \
1516
&& rm -rf /var/lib/apt/lists/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ at once, so `clang-tidy-review` will only attempt to post the first
8888
- `base_dir`: Absolute path to initial working directory
8989
`GITHUB_WORKSPACE`.
9090
- default: `GITHUB_WORKSPACE`
91-
- `clang_tidy_version`: Version of clang-tidy to use; one of 14, 15, 16, 17, 18
92-
- default: '18'
91+
- `clang_tidy_version`: Version of clang-tidy to use; one of 14, 15, 16, 17, 18, 19
92+
- default: '19'
9393
- `clang_tidy_checks`: List of checks
9494
- default: `'-*,performance-*,readability-*,bugprone-*,clang-analyzer-*,cppcoreguidelines-*,mpi-*,misc-*'`
9595
- `config_file`: Path to clang-tidy config file, replaces `clang_tidy_checks`

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ inputs:
1818
default: ${{ github.workspace }}
1919
require: false
2020
clang_tidy_version:
21-
description: 'Version of clang-tidy to use; one of 14, 15, 16, 17, 18'
22-
default: '18'
21+
description: 'Version of clang-tidy to use; one of 14, 15, 16, 17, 18, 19'
22+
default: '19'
2323
required: false
2424
clang_tidy_checks:
2525
description: 'List of checks'

0 commit comments

Comments
 (0)