We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201d23a commit 274fb2dCopy full SHA for 274fb2d
.github/workflows/ci.yml
@@ -20,6 +20,9 @@ jobs:
20
- rust: 1.51.0 # MSRV
21
features: serde
22
experimental: false
23
+ - rust: 1.70.0
24
+ features: serde
25
+ experimental: false
26
- rust: stable
27
features:
28
bench: true
@@ -38,6 +41,11 @@ jobs:
38
41
profile: minimal
39
42
toolchain: ${{ matrix.rust }}
40
43
override: true
44
+ - name: Pin versions for MSRV
45
+ if: "${{ matrix.rust == '1.51.0' }}"
46
+ run: |
47
+ cargo update -p serde_test --precise 1.0.163
48
+ cargo update -p serde --precise 1.0.69
49
- name: Tests
50
run: |
51
cargo build --verbose --features "${{ matrix.features }}"
0 commit comments