Skip to content

Commit

Permalink
fix(lint): fix lint issue in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
s1n7ax committed Jan 9, 2024
1 parent d8b9d0e commit 9df630d
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
neovim_version: ['nightly']
neovim_version: ["nightly"]

steps:
- uses: actions/checkout@v3
Expand All @@ -25,8 +25,12 @@ jobs:

- name: Prepare plenary
run: |
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim
ln -s "$(pwd)" ~/.local/share/nvim/site/pack/vendor/start
git clone --depth 1 \
https://github.com/nvim-lua/plenary.nvim \
~/.local/share/nvim/site/pack/vendor/start/plenary.nvim
ln -s "$(pwd)" \
~/.local/share/nvim/site/pack/vendor/start
- name: Setup neovim
uses: rhysd/action-setup-vim@v1
Expand All @@ -36,4 +40,8 @@ jobs:

- name: Run tests
run: |
nvim --headless --noplugin -u tests/minimal.vim -c "PlenaryBustedDirectory tests/ {minimal_init = 'tests/minimal.vim'}"
nvim \
--headless \
--noplugin \
-u tests/minimal.vim \
-c "PlenaryBustedDirectory tests/ {minimal_init = 'tests/minimal.vim'}"

0 comments on commit 9df630d

Please sign in to comment.