Skip to content

Commit

Permalink
chore: show MSRV output
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Aug 14, 2024
1 parent e7c851c commit b99abe1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b99abe1

Please sign in to comment.