Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #103

Merged
merged 1 commit into from
Dec 7, 2024
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