chore: bump changelog #440
This file contains 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@v2 # Checking out the repo | |
- name: Install tooling | |
run: | | |
sudo apt-get update | |
sudo apt-get install uuid-runtime curl jq | |
curl -sL https://api.github.com/repos/neovim/neovim/releases/latest | \ | |
jq -r '.assets[].browser_download_url' | \ | |
grep nvim-linux64.tar.gz | \ | |
head -n 1 | \ | |
xargs curl -LO && \ | |
tar zxf nvim-linux64.tar.gz | |
- name: Run tests | |
run: | | |
NVIM_BIN=./nvim-linux64/bin/nvim /bin/bash test/test.sh | |
exit $? | |
run_tests_windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 # Checking out the repo | |
- 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 |