Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,16 @@ jobs:
steps:
- uses: actions/checkout@v7

- name: Install stable toolchain
- name: Install MSRV toolchain
run: |
rustup set profile minimal
rustup override set 1.85.0

- name: Downgrade some crates that have newer MSRV
# encoding_rs 0.8.40 requires Rust 1.88
run: |
cargo update encoding_rs --precise 0.8.35

- run: cargo check --lib --all-features

lint:
Expand Down