diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2f87d8..00ce4ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,11 +15,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Extract MSRV from Cargo.toml - run: MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].rust_version') - - name: Set MSRV as output id: msrv - #run: echo "MSRV=$MSRV" >> "$GITHUB_OUTPUT" - run: echo "MSRV=1.67.1" >> "$GITHUB_OUTPUT" + run: | + MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].rust_version') + echo "MSRV=1.67.1" >> "$GITHUB_OUTPUT" ## NOTE vmx 2022-06-14: currently doesn't work, hence run it on CircleCI ## for now.