fix: improve daemon readiness tracking and terminal robustness #2
This file contains hidden or 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: 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 |