diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-01-01 17:39:38 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-01-05 17:10:02 +0100 |
commit | 599e1d019aa010d4e3c56e6bad3d1c406dda5b0f (patch) | |
tree | fee38807bfb6956eaa34e0468a0baaad0d117e7b | |
parent | 7c94bcd2d77e2e54b8836ab8325460a367b79eae (diff) | |
download | rneovim-599e1d019aa010d4e3c56e6bad3d1c406dda5b0f.tar.gz rneovim-599e1d019aa010d4e3c56e6bad3d1c406dda5b0f.tar.bz2 rneovim-599e1d019aa010d4e3c56e6bad3d1c406dda5b0f.zip |
ci: use nvim -l in api-docs job
-rw-r--r-- | .github/workflows/api-docs.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml index 8f5b8ce8e8..fa8a7dbca0 100644 --- a/.github/workflows/api-docs.yml +++ b/.github/workflows/api-docs.yml @@ -28,6 +28,10 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: + - uses: rhysd/action-setup-vim@v1 + with: + neovim: true + version: nightly - uses: actions/checkout@v3 with: # Fetch depth 0 is required if called through workflow_call. In order @@ -38,7 +42,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo env DEBIAN_FRONTEND=noninteractive apt-get install -y doxygen python3 python3-msgpack luajit + sudo env DEBIAN_FRONTEND=noninteractive apt-get install -y doxygen python3 python3-msgpack - name: Setup git config run: | |