Skip to content

Commit

Permalink
fix workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
amtoine committed Oct 12, 2023
1 parent fdf0f59 commit 6bd87bc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,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"

0 comments on commit 6bd87bc

Please sign in to comment.