fix: check if lsp config is a table or a function before trying to index it #16
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
| --- | |
| on: [push, pull_request] | |
| name: lint-test | |
| jobs: | |
| stylua: | |
| name: stylua | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: JohnnyMorganz/stylua-action@v4 | |
| with: | |
| version: latest | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| args: --color always --check lua | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| nvim-versions: ['stable', 'nightly'] | |
| name: test | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - uses: rhysd/action-setup-vim@v1 | |
| with: | |
| neovim: true | |
| version: ${{ matrix.nvim-versions }} | |
| - name: run tests | |
| run: make test |