fix(tracker): use TextPutPost only for Neovim >=v0.13
#308
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: Selene Lint | |
| on: | |
| push: | |
| paths: | |
| - '**.lua' | |
| - '.github/workflows/selene.yml' | |
| - selene.toml | |
| - vim.yml | |
| pull_request: | |
| types: | |
| - opened | |
| paths: | |
| - '**.lua' | |
| - '.github/workflows/selene.yml' | |
| - selene.toml | |
| - vim.yml | |
| jobs: | |
| selene_check: | |
| name: Lint With Selene | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.3 | |
| - name: Lint Lua code with Selene | |
| uses: AlejandroSuero/selene-linter-action@v1.0.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| args: --display-style=quiet lua | |
| # vim: set ts=2 sts=2 sw=2 et ai si sta: |