Merge pull request #940 from NeogitOrg/branch-color-blue #1800
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: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: | | |
mkdir -p ~/.local/share/neogit-test/site/pack/plenary.nvim/start | |
cd ~/.local/share/neogit-test/site/pack/plenary.nvim/start | |
git clone https://github.com/nvim-lua/plenary.nvim | |
mkdir -p ~/.local/share/neogit-test/site/pack/telescope.nvim/start | |
cd ~/.local/share/neogit-test/site/pack/telescope.nvim/start | |
git clone https://github.com/nvim-telescope/telescope.nvim | |
- name: Install Neovim | |
run: | | |
wget https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.tar.gz | |
tar -zxf nvim-linux64.tar.gz | |
sudo ln -s $(pwd)/nvim-linux64/bin/nvim /usr/local/bin | |
- name: Test | |
continue-on-error: false | |
env: | |
ci: "1" | |
run: | | |
make test |