From b99abe1f910fee86e3e0bd3e35a32bc516010a73 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Wed, 14 Aug 2024 14:34:53 +0200 Subject: [PATCH] chore: show MSRV output --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8170c57..d33af1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,12 +17,11 @@ jobs: msrv: ${{ steps.msrv.outputs.MSRV }} steps: - uses: actions/checkout@v4 - - name: Extract MSRV from Cargo.toml + - name: Get MSRV from rust-toolchain id: msrv run: | - #MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r 'first(.packages[].rust_version | select(.))') MSRV=$(cat ./rust-toolchain) - echo "MSRV=$MSRV" >> "$GITHUB_OUTPUT" + echo "MSRV=$MSRV" | tee --append "$GITHUB_OUTPUT" #linux: # strategy: