Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
vim --version

- name: Download Neovim
run: gh -R neovim/neovim release download -p nvim-linux64.tar.gz
run: gh -R neovim/neovim release download -p nvim-linux-x86_64.tar.gz
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Neovim
run: |
tar -C "$HOME" -xaf nvim-linux64.tar.gz
"$HOME/nvim-linux64/bin/nvim" --version
tar -C "$HOME" -xaf nvim-linux-x86_64.tar.gz
"$HOME/nvim-linux-x86_64/bin/nvim" --version

- name: Rust Toolchain Info
run: |
Expand Down Expand Up @@ -82,6 +82,6 @@ jobs:

- name: Test Neovim
run: |
export TEST_VIM="$HOME/nvim-linux64/bin/nvim"
export TEST_VIM="$HOME/nvim-linux-x86_64/bin/nvim"
cargo run
cargo run --bin=test-ftdetect