Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
placintaalexandru committed Nov 1, 2023
1 parent 6347a0e commit 51553e3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test_stable_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
CARGO: ${{ steps.toolchain.outputs.cargo }}
RUSTUP: ${{ steps.toolchain.outputs.rustup }}
run: |
echo "$RUSTC" && test "$RUSTC"
echo "$RUSTC_HASH" && test "$RUSTC_HASH"
echo "$CARGO" && test "$CARGO"
echo "$RUSTUP" && test "$RUSTUP"
echo "$RUSTC" && test "$RUSTC" != ""
echo "$RUSTC_HASH" && test "$RUSTC_HASH" != ""
echo "$CARGO" && test "$CARGO" != ""
echo "$RUSTUP" && test "$RUSTUP" != ""
install_in_docker:
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
CARGO: ${{ steps.toolchain.outputs.cargo }}
RUSTUP: ${{ steps.toolchain.outputs.rustup }}
run: |
echo "$RUSTC" && test "$RUSTC"
echo "$RUSTC_HASH" && test "$RUSTC_HASH"
echo "$CARGO" && test "$CARGO"
echo "$RUSTUP" && test "$RUSTUP"
echo "$RUSTC" && test "$RUSTC" != ""
echo "$RUSTC_HASH" && test "$RUSTC_HASH" != ""
echo "$CARGO" && test "$CARGO" != ""
echo "$RUSTUP" && test "$RUSTUP" != ""

0 comments on commit 51553e3

Please sign in to comment.