ci: fix test runner — use luafile instead of -l for <sfile> support #7
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: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| brew install neovim stylua luacheck | |
| git clone --depth 1 https://github.com/nvim-lua/plenary.nvim .deps/plenary.nvim | |
| - name: Check formatting | |
| run: make format-check | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make test |