Skip to content

Commit

Permalink
fix: yaml variables
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed May 14, 2024
1 parent 22ac8dc commit 9020223
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
export VIM="${PWD}/_neovim/share/nvim/runtime"
nvim --version
make test-nvim
if: runner.os != "Windows"
if: ${{ runner.os }} != "Windows"

- name: Run tests with Neovim on Windows
shell: pwsh
Expand All @@ -43,7 +43,7 @@ jobs:
$env:VIM = "$env:PWD\_neovim\share\nvim\runtime"
nvim --version
make test-nvim
if: runner.os == "Windows"
if: ${{ runner.os }} == "Windows"

- uses: actions/checkout@v4

Expand Down

0 comments on commit 9020223

Please sign in to comment.