Skip to content

Commit

Permalink
Merge pull request #115 from lambdalisue/fix-ci
Browse files Browse the repository at this point in the history
☕ Fix CI
  • Loading branch information
lambdalisue authored Dec 5, 2023
2 parents e737a4b + f29ade5 commit 59e0e9d
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
schedule:
- cron: "0 7 * * 0"
push:
branches:
- main
paths:
- "**/*.md"
- "**/*.ts"
Expand Down Expand Up @@ -75,23 +73,21 @@ jobs:
- uses: denoland/setup-deno@v1
with:
deno-version: "${{ matrix.version }}"
- uses: thinca/action-setup-vim@v1
- uses: rhysd/action-setup-vim@v1
id: vim
with:
vim_type: "Vim"
vim_version: "${{ matrix.host_version.vim }}"
download: "never"
version: "${{ matrix.host_version.vim }}"
- name: Check Vim
run: |
echo ${DENOPS_TEST_VIM}
${DENOPS_TEST_VIM} --version
env:
DENOPS_TEST_VIM: ${{ steps.vim.outputs.executable_path }}
- uses: thinca/action-setup-vim@v1
DENOPS_TEST_VIM: ${{ steps.vim.outputs.executable }}
- uses: rhysd/action-setup-vim@v1
id: nvim
with:
vim_type: "Neovim"
vim_version: "${{ matrix.host_version.nvim }}"
neovim: true
version: "${{ matrix.host_version.nvim }}"
- name: Check Neovim
run: |
echo ${DENOPS_TEST_NVIM}
Expand All @@ -103,5 +99,5 @@ jobs:
run: deno task test
env:
DENOPS_TEST_DENOPS_PATH: "../denops.vim"
DENOPS_TEST_VIM_EXECUTABLE: ${{ steps.vim.outputs.executable_path }}
DENOPS_TEST_VIM_EXECUTABLE: ${{ steps.vim.outputs.executable }}
DENOPS_TEST_NVIM_EXECUTABLE: ${{ steps.nvim.outputs.executable }}

0 comments on commit 59e0e9d

Please sign in to comment.