Conversation
Code ReviewP0 - YAML Syntax Error: The The current change: - name: cargo +${{ matrix.msrv }} check
env: RUSTUP_TOOLCHAIN=${{ matrix.msrv }}Should be: - name: cargo +${{ matrix.msrv }} check
env:
RUSTUP_TOOLCHAIN: ${{ matrix.msrv }}The idea to use The MSRV updates in |
| env: | ||
| RUSTUP_TOOLCHAIN: ${{ matrix.msrv }} |
There was a problem hiding this comment.
This tells it to ignore the toolchain file basically?
There was a problem hiding this comment.
Yeah it's higher up in the resolution chain: https://rust-lang.github.io/rustup/overrides.html
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
The `rust-toolchain.toml` file has been making our current MSRV check inert. This environment variable should override it. Also updates MSRV to 1.88 (same as DataFusion) and makes associated clippy fixes.
The
rust-toolchain.tomlfile has been making our current MSRV check inert. This environment variable should override it.Also updates MSRV to 1.88 (same as DataFusion) and makes associated clippy fixes.