diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2023-01-05 13:06:21 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-05 13:06:21 -0500 |
| commit | 08ebf8d3a80c65b01d493ca84ad2ab7304a669f9 (patch) | |
| tree | 77f73c6e88134d702ca275e43b45f5316ba5b47e /.github | |
| parent | 39d70fcafd6efa9d01b88bb90cab81c393040453 (diff) | |
| parent | 628b717022815a431ea0b980444d6115c644f8c8 (diff) | |
| download | rneovim-08ebf8d3a80c65b01d493ca84ad2ab7304a669f9.tar.gz rneovim-08ebf8d3a80c65b01d493ca84ad2ab7304a669f9.tar.bz2 rneovim-08ebf8d3a80c65b01d493ca84ad2ab7304a669f9.zip | |
Merge #18706 execute Lua with "nvim -l"
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/api-docs.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
2 files changed, 9 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: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2af9bc49d8..6e727448b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -205,6 +205,8 @@ jobs: env: CC: ${{ matrix.cc }} CI_OS_NAME: ${{ matrix.os }} + # TEST_FILE: test/functional/core/startup_spec.lua + # TEST_FILTER: foo steps: - uses: actions/checkout@v3 @@ -281,6 +283,8 @@ jobs: DEPS_BUILD_DIR: ${{ github.workspace }}/nvim-deps CACHE_NVIM_DEPS_DIR: ${{ github.workspace }}/nvim-deps DEPS_PREFIX: ${{ github.workspace }}/nvim-deps/usr + # TEST_FILE: test/functional/core/startup_spec.lua + # TEST_FILTER: foo name: windows (MSVC_64) steps: - uses: actions/checkout@v3 |