Add a mapping to restart the babashka auto REPL #264
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, pull_request] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| # TODO: Get windows-latest working. | |
| # Currently errors with: ln: failed to create symbolic link '.test/nvim/pack/main/start/conjure' -> '../../../../../': File name too long | |
| os: [ubuntu-latest, macOS-latest] | |
| neovim-version: ["0.10.4", "0.11.3"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Mise | |
| uses: jdx/mise-action@v2 | |
| - name: Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| .test/nvim/pack | |
| key: conjure-${{ hashFiles('scripts/setup-test-deps') }} | |
| restore-keys: conjure- | |
| - name: Test | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| mise run -t neovim@${{ matrix.neovim-version }} test |