add stars to the readme.md #8
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: run ci | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: unit tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| neovim_version: ['nightly', 'v0.10.0'] | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| - name: install neovim | |
| uses: rhysd/action-setup-vim@v1 | |
| with: | |
| neovim: true | |
| version: ${{ matrix.neovim_version }} | |
| - name: check version of curl and jq | |
| run: | | |
| jq --version | |
| curl --version | |
| - name: run tests | |
| run: | | |
| nvim --headless --noplugin -u spec/minimal_init.lua -c "PlenaryBustedDirectory spec/ {sequential = true, minimal_init = 'spec/minimal_init.lua'}" | |