Add hard-coded fallback colors #1041
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: Tests | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
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 |