diff options
author | James McCoy <jamessan@jamessan.com> | 2022-02-19 19:35:41 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2022-02-19 20:35:05 -0500 |
commit | 0c4c384ed166d4b59149dded959c3ce3b2b09f3e (patch) | |
tree | 42ee771522ff3a7221f34ef0cad660b5f8b9c704 | |
parent | 34cb26011ef4ef61988763839517610ca7a58b8c (diff) | |
download | rneovim-0c4c384ed166d4b59149dded959c3ce3b2b09f3e.tar.gz rneovim-0c4c384ed166d4b59149dded959c3ce3b2b09f3e.tar.bz2 rneovim-0c4c384ed166d4b59149dded959c3ce3b2b09f3e.zip |
ci(lint): explicity build nvim
“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.
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
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 |