chore: fix Fennel file path in licensing notice in README #514
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: Run Tests | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| run_tests_linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run tests against v0.11.7 | |
| run: | | |
| alias podman=docker | |
| env NVIM_VERSION=v0.11.7 | |
| /bin/bash test/test_in_container.sh | |
| - name: Run tests against v0.12.0 | |
| run: | | |
| alias podman=docker | |
| env NVIM_VERSION=v0.12.0 | |
| /bin/bash test/test_in_container.sh | |
| run_tests_windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Neovim | |
| run: | | |
| choco install neovim | |
| Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1 | |
| refreshenv | |
| - name: Run tests | |
| run: | | |
| Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass | |
| powershell -File test\test.ps1 | |
| exit $LASTEXITCODE |