Test github action for running tests #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Neovim | |
run: | | |
sudo add-apt-repository ppa:neovim-ppa/stable -y | |
sudo apt-get update | |
sudo apt-get install neovim -y | |
- name: Get Plenary into the mix | |
run: | | |
git clone https://github.com/nvim-lua/plenary.nvim.git | |
mkdir -p .local/share/nvim/lazy/ | |
mv plenary.nvim .local/share/nvim/lazy/ | |
- name: Run Tests | |
run: make test | |