Skip to content

chore: fix Fennel file path in licensing notice in README #514

chore: fix Fennel file path in licensing notice in README

chore: fix Fennel file path in licensing notice in README #514

Workflow file for this run

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