From 74157b12989e9744ab1f48eb2404a2f494cd9452 Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Thu, 10 Oct 2024 00:40:43 -0400 Subject: [PATCH] ci(check-and-build-and-test): see if changing the `--output-format` to `json` for `cargo msrv verify` will make it actually show up in the GitHub Actions log --- .github/workflows/check-and-build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-and-build-and-test.yml b/.github/workflows/check-and-build-and-test.yml index d1813fd..e8f3f21 100644 --- a/.github/workflows/check-and-build-and-test.yml +++ b/.github/workflows/check-and-build-and-test.yml @@ -230,5 +230,5 @@ jobs: cache-on-failure: "true" - name: Verify declared MSRV (minimum supported Rust version) - run: cargo msrv verify + run: cargo msrv verify --output-format json working-directory: ${{ matrix.crate_directory }}