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 daf2856
Showing 1 changed file with 6 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

0 comments on commit daf2856

Please sign in to comment.