Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Dec 6, 2024
1 parent 7733143 commit 9e3c976
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
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

0 comments on commit 9e3c976

Please sign in to comment.