diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-08 18:16:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-08 18:16:48 +0100 |
| commit | d6d3a9201302c5c728d2bdd1c50678e18645e7eb (patch) | |
| tree | 8c6d213e1e0a82d817568ff321865e8b0cf4182f /.github/workflows | |
| parent | f4c836ad704045434f56498a0ceea4c7e705ab07 (diff) | |
| download | rneovim-d6d3a9201302c5c728d2bdd1c50678e18645e7eb.tar.gz rneovim-d6d3a9201302c5c728d2bdd1c50678e18645e7eb.tar.bz2 rneovim-d6d3a9201302c5c728d2bdd1c50678e18645e7eb.zip | |
build: replace check-single-includes with clang-tidy (#22061)
Clang-tidy already does what check-single-includes does automatically on
top of its regular linting. It is also generator independent, so it
doesn't take an eternity to run on slower generators such as Visual
Studio.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa2708332c..d3974e8c85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -171,8 +171,7 @@ jobs: run: cmake --build build --target lintc-clint - if: success() || failure() && steps.abort_job.outputs.status == 'success' - name: check-single-includes - run: make check-single-includes + run: cmake --build build --target clang-tidy - name: Cache dependencies run: ./ci/before_cache.sh |