Skip to content

Commit b752d18

Browse files
committed
Merge branch 'main' into fix-source-perms
2 parents 53243cc + b368804 commit b752d18

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,11 @@ jobs:
5353
run: |
5454
rustup toolchain install ${{ matrix.rust }} --profile minimal --allow-downgrade
5555
rustup default ${{ matrix.rust }}
56-
- name: Pin `zeroize` for MSRV
56+
- name: Pin dependencies for MSRV
5757
if: matrix.msrv
58-
run:
58+
run: |
5959
cargo update -p zeroize --precise 1.6.0
60+
cargo update -p pretty_assertions --precise 1.4.0
6061
- name: Build
6162
run:
6263
cargo build --workspace ${{ matrix.features }}
@@ -107,10 +108,11 @@ jobs:
107108
run: |
108109
rustup toolchain install ${{ matrix.rust }} --target thumbv6m-none-eabi --profile minimal --allow-downgrade
109110
rustup default ${{ matrix.rust }}
110-
- name: Pin `zeroize` for MSRV
111+
- name: Pin dependencies for MSRV
111112
if: matrix.msrv
112-
run:
113+
run: |
113114
cargo update -p zeroize --precise 1.6.0
115+
cargo update -p pretty_assertions --precise 1.4.0
114116
- name: Build
115117
run:
116118
cargo build --target thumbv6m-none-eabi ${{ matrix.features }} -p ensure-no-std

test-crates/minimal-versions/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ resolver = "2"
55
edition = "2021"
66
name = "minimal-versions"
77
publish = false
8+
rust-version = "1.57"
89
version = "0.0.0"
910

1011
[features]

0 commit comments

Comments
 (0)