From 5807552e5984ab4b5f28b552b32e8a1630b3f1ba Mon Sep 17 00:00:00 2001 From: Alisue Date: Tue, 15 Oct 2024 01:21:41 +0900 Subject: [PATCH] Install `ncurses` on macOS for Vim 8.2.1310 --- .github/workflows/vim.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/vim.yml b/.github/workflows/vim.yml index 5c8246a..36c648e 100644 --- a/.github/workflows/vim.yml +++ b/.github/workflows/vim.yml @@ -21,6 +21,10 @@ jobs: - v8.2.1310 # https://github.com/lambdalisue/vim-fern/issues/506 runs-on: ${{ matrix.os }} steps: + - if: runner.os == 'macOS' && matrix.version == 'v8.2.1310' + run: | + # it seems that ncurses is required for building Vim 8.2.1310 on macOS + brew install ncurses - uses: actions/checkout@v4 - uses: actions/checkout@v4 with: