Skip to content

only luacheck files from the repo #5

only luacheck files from the repo

only luacheck files from the repo #5

Workflow file for this run

name: Plenary Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Run Plenary Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Neovim
shell: bash
run: |
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository ppa:neovim-ppa/unstable
sudo apt-get update
sudo apt-get install -y neovim
- name: Install Plenary
shell: bash
run: |
mkdir -p ~/.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
- name: Create Test Data Dir
shell: bash
run: |
mkdir -p test_data
- name: Run Plenary Tests
env:
PLENARY_TEST: true
run: nvim --headless -c "PlenaryBustedDirectory test/tabby" -c "q"