Skip to content

fix: improve daemon readiness tracking and terminal robustness #2

fix: improve daemon readiness tracking and terminal robustness

fix: improve daemon readiness tracking and terminal robustness #2

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ github.token }}
version: 2.4.0
args: --check lua/ plugin/ tests/
test:
runs-on: ubuntu-latest
strategy:
matrix:
neovim: [v0.10.0, stable]
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim }}
- name: Clone plenary.nvim
run: |
git clone --depth 1 --branch v0.1.4 \
https://github.com/nvim-lua/plenary.nvim \
~/.local/share/nvim/lazy/plenary.nvim
- name: Run tests
run: make test