fix(integration_default): override enabled
key only if integration has one
#384
Workflow file for this run
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: Neovim | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- "*.md" | |
branches: | |
- main | |
jobs: | |
ubuntu: | |
name: Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Neovim | |
uses: MunifTanjim/setup-neovim-action@v1 | |
with: | |
tag: nightly | |
- name: Run neovim | |
run: | | |
nvim --version | |
nvim --headless -u tests/init.lua +q | |
macos: | |
name: Macos | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Neovim | |
run: | | |
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz | |
xattr -c ./nvim-macos.tar.gz | |
tar xzvf nvim-macos.tar.gz &> /dev/null | |
ln -s $(pwd)/nvim-macos/bin/nvim /usr/local/bin/nvim | |
- name: Run neovim | |
run: | | |
nvim --version | |
nvim --headless -u tests/init.lua +q | |
windows: | |
name: Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Neovim | |
run: | | |
C:\msys64\usr\bin\wget.exe -q https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.zip | |
7z x nvim-win64.zip | |
Add-Content $env:GITHUB_PATH ".\nvim-win64\bin\" | |
- name: Run neovim | |
run: | | |
nvim --version | |
nvim --headless -u tests/init.lua +q |