Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,11 @@ jobs:
run: |
rustup toolchain install ${{ matrix.rust }} --profile minimal --allow-downgrade
rustup default ${{ matrix.rust }}
- name: Pin `zeroize` for MSRV
- name: Pin dependencies for MSRV
if: matrix.msrv
run:
run: |
cargo update -p zeroize --precise 1.6.0
cargo update -p pretty_assertions --precise 1.4.0
- name: Build
run:
cargo build --workspace ${{ matrix.features }}
Expand Down Expand Up @@ -107,10 +108,11 @@ jobs:
run: |
rustup toolchain install ${{ matrix.rust }} --target thumbv6m-none-eabi --profile minimal --allow-downgrade
rustup default ${{ matrix.rust }}
- name: Pin `zeroize` for MSRV
- name: Pin dependencies for MSRV
if: matrix.msrv
run:
run: |
cargo update -p zeroize --precise 1.6.0
cargo update -p pretty_assertions --precise 1.4.0
- name: Build
run:
cargo build --target thumbv6m-none-eabi ${{ matrix.features }} -p ensure-no-std
Expand Down
1 change: 1 addition & 0 deletions test-crates/minimal-versions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ resolver = "2"
edition = "2021"
name = "minimal-versions"
publish = false
rust-version = "1.57"
version = "0.0.0"

[features]
Expand Down
Loading