From 0c4c384ed166d4b59149dded959c3ce3b2b09f3e Mon Sep 17 00:00:00 2001 From: James McCoy Date: Sat, 19 Feb 2022 19:35:41 -0500 Subject: [PATCH] ci(lint): explicity build nvim MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “make clint-full” bypasses the normal mechanisms used to communicate build flags in the CI jobs, so explicitly build nvim before running the lint jobs. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 844ceb5927..0299849d9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,9 @@ jobs: ~/.ccache key: lint-${{ hashFiles('cmake/*', '**/CMakeLists.txt', '!third-party/**CMakeLists.txt') }}-${{ github.base_ref }} + - name: Build nvim + run: ./ci/run_tests.sh build + - if: "!cancelled()" name: clint run: ./ci/run_lint.sh clint