From 59114a6832bcdc0f2ff33f352a1aabc3d96150a9 Mon Sep 17 00:00:00 2001 From: Qi Xiao Date: Mon, 26 Feb 2024 16:08:09 +0000 Subject: [PATCH] Fix test workflow. The "shell:" field seems to not support matrix parameters. --- .github/workflows/test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 957999e..a428239 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,5 @@ jobs: shell: elvish {0} run: | echo This is Elvish $version - - name: Run with Elvish with explicit version - shell: elvish-${{ matrix.elvish-version }} {0} - run: | - echo This is Elvish $version + elvish -c 'Can be used as an external command too' + elvish-${{ matrix.elvish-version }} -c 'Also available with explicit version'