From 9df630d0158fcad6c3caf7c11f7fa75e1084905e Mon Sep 17 00:00:00 2001 From: s1n7ax Date: Tue, 9 Jan 2024 22:15:19 +0530 Subject: [PATCH] fix(lint): fix lint issue in workflows --- .github/workflows/tests.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7f2155a..8617567 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - neovim_version: ['nightly'] + neovim_version: ["nightly"] steps: - uses: actions/checkout@v3 @@ -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 @@ -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'}"