From 696f6108eb7d5b0da839f57a5e04c234e9da6a05 Mon Sep 17 00:00:00 2001 From: amtoine Date: Thu, 12 Oct 2023 11:30:36 +0200 Subject: [PATCH] fix workflow file --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 713ebd9..01c6757 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,9 @@ jobs: cp "/tmp/$name/${{ env.NU_BIN }}" "$HOME/${{ env.NU_BIN }}" - name: Show Nushell Version - run: "$HOME/${{ env.NU_BIN }}" --commands "version" + run: | + "$HOME/${{ env.NU_BIN }}" --commands "version" - name: Run the tests - run: "$HOME/${{ env.NU_BIN }}" --commands "use $PWD/nupm/; nupm test" + run: | + "$HOME/${{ env.NU_BIN }}" --commands "use $PWD/nupm/; nupm test"