docs: add Snacks.nvim dashboard workaround for lazy.nvim dependency #39
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: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # Note: zpack requires Neovim 0.12.0+ | |
| # Once 0.12.0 is released, add 'v0.12.0' to test against stable | |
| neovim-version: ['nightly'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Neovim | |
| uses: rhysd/action-setup-vim@v1 | |
| with: | |
| neovim: true | |
| version: ${{ matrix.neovim-version }} | |
| - name: Run tests | |
| run: nvim --version && nvim -u NONE --headless -S run_tests.lua | |
| - name: Check test results | |
| if: failure() | |
| run: echo "Tests failed - check logs above" |