Skip to content

Commit

Permalink
fix: changed it to powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed May 14, 2024
1 parent b19bf1d commit 22ac8dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
if: runner.os != "Windows"

- name: Run tests with Neovim on Windows
shell: cmd
shell: pwsh
run: |
SET PATH="${PWD}/_neovim/bin;${PATH}"
SET VIM="${PWD}/_neovim/share/nvim/runtime"
$env:PATH = "$env:PWD\_neovim\bin;$env:PATH"
$env:VIM = "$env:PWD\_neovim\share\nvim\runtime"
nvim --version
make test-nvim
if: runner.os == "Windows"
Expand Down

0 comments on commit 22ac8dc

Please sign in to comment.