Test github action for running tests #4
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: [ main, workflow ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- 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 | |