Move some of the header code from compile into it's own module #150
Workflow file for this run
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: Test | |
| on: [ push ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| neovim-version: [ "v0.9.0", "v0.9.1", "stable", "nightly" ] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: MunifTanjim/setup-neovim-action@v1 | |
| with: | |
| tag: ${{ matrix.neovim-version }} | |
| - name: Install Neovim plugins | |
| run: | | |
| ./script/setup-test-deps | |
| - name: Test with plenary / busted | |
| run: | | |
| ./script/test |