diff options
| author | Refael Ackermann <refack@gmail.com> | 2019-02-22 09:59:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-22 09:59:58 -0500 |
| commit | 0105c04115e7a94cea2f134a00ec7d15baa15772 (patch) | |
| tree | d4b09653a82ac01ff470967fdcc4a3ba6909b864 | |
| parent | 1f00a9b7b34c6b89f084d25423e7612ab0d8c6b2 (diff) | |
| parent | 051933b89441e6c00205ca3462dcfb4d98b344e5 (diff) | |
| download | node-new-new-workflow-1.tar.gz | |
Merge pull request #26263 from cclauss/patch-3new-workflow-1
meta: try GitHub Action for cpplint
Co-authored-by: Refael Ackermann <refack@gmail.com>
| -rw-r--r-- | .github/main.workflow | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/main.workflow b/.github/main.workflow index 50beb4c9a7..0fdb6800b6 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,6 +1,12 @@ workflow "on push" { on = "push" - resolves = ["Find Python 3 syntax errors and undefined names", "GitHub Action for Flake8", "GitHub Action for pylint"] + # resolves = ["Find Python 3 syntax errors and undefined names", "GitHub Action for Flake8", "GitHub Action for pylint"] + resolves = ["GitHub Action for cpplint"] +} + +action "GitHub Action for cpplint" { + uses = "cclauss/GitHub-Action-for-cpplint@master" + args = "cpplint --recursive ." } action "Find Python 3 syntax errors and undefined names" { |
