You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[`tidy-review`][tidy-review] or [`format-review`][format-review]).
34
34
35
35
> [!WARNING]
36
-
> We only support Linux runners using a Debianbased Linux OS (like Ubuntu and many others).
36
+
> We only support Linux runners using a Debian-based Linux OS (like Ubuntu and many others).
37
37
>
38
38
> MacOS and Windows runners are supported as well.
39
39
40
-
## What's New
41
-
42
-
v2
43
-
44
-
* Change action from using docker to composite steps
45
-
* improve workflow runs times from 1m 24s (using v1) to 6-20s (for simple workflow runs).
46
-
* better support for the database input option (which was broken with the docker environment in v1).
47
-
* better support cross-compilation
48
-
* better support 3rd party libraries
49
-
* Includes many issues and enhancements. See [#87](https://github.com/cpp-linter/cpp-linter-action/issues/87) for details.
50
-
51
-
Refer [here](https://github.com/cpp-linter/cpp-linter-action/tree/v1) for previous versions.
52
-
53
40
## Usage
54
41
55
42
> [!NOTE]
56
43
> Python 3.10 needs to be installed in the docker image if your workflow is
57
44
> [running jobs in a container](https://docs.github.com/en/actions/using-jobs/running-jobs-in-a-container)
58
45
> (see discussion in [#185](https://github.com/cpp-linter/cpp-linter-action/issues/185)).
59
-
> Our intention is to synchronize with the default python version included with Ubuntu latest LTS releases.
46
+
> Our intention is to synchronize with the default Python version included with Ubuntu's latest LTS releases.
60
47
61
48
Create a new GitHub Actions workflow in your project, e.g. at [.github/workflows/cpp-linter.yml](https://github.com/cpp-linter/cpp-linter-action/blob/main/.github/workflows/cpp-linter.yml)
62
49
@@ -72,7 +59,7 @@ The content of the file should be in the following format.
72
59
with:
73
60
style: 'file'# Use .clang-format config file
74
61
tidy-checks: ''# Use .clang-tidy config file
75
-
# only 'update' a single comment in a pull request's thread.
62
+
# only 'update' a single comment in a pull request thread.
0 commit comments