Test github action for running tests #10
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 | |
# Install dependencies for Neovim if needed | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libtool-bin autoconf automake cmake g++ pkg-config unzip gettext curl -y | |
- name: Install Neovim | |
run: | | |
sudo snap install nvim --classic | |
- name: Install Plenary | |
run: | | |
git clone https://github.com/nvim-lua/plenary.nvim.git | |
mkdir -p .local/share/nvim/lazy/ | |
mv plenary.nvim .local/share/nvim/lazy/ | |
# Ensure that Neovim's path and dependencies are correctly set | |
- name: Run Tests | |
env: | |
XDG_CONFIG_HOME: ${{ github.workspace }}/.config | |
XDG_DATA_HOME: ${{ github.workspace }}/.local/share | |
XDG_STATE_HOME: ${{ github.workspace }}/.local/state | |
XDG_CACHE_HOME: ${{ github.workspace }}/.cache | |
run: make test |