File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1+ on : [push]
2+ name : With dependencies at minimal versions
3+ jobs :
4+ test :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions-rs/toolchain@v1
8+ with :
9+ profile : minimal
10+ toolchain : nightly
11+ - uses : actions-rs/toolchain@v1
12+ with :
13+ profile : minimal
14+ toolchain : stable
15+ - uses : actions/checkout@v2
16+ - name : cargo update -Zminimal-versions
17+ uses : actions-rs/cargo@v1
18+ with :
19+ command : update
20+ toolchain : nightly
21+ args : -Zminimal-versions
22+ - name : cargo test
23+ uses : actions-rs/cargo@v1
24+ with :
25+ command : test
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ default = [ "serialization", "sync" ]
2929[dependencies ]
3030num-traits = " 0.2"
3131byteorder = " 1.0.0"
32- flate2 = { version = " 1.0" , optional = true }
32+ flate2 = { version = " 1.0.3 " , optional = true }
3333nom = { version = " 7.0.0" , optional = true }
3434base64 = { version = " 0.13" , optional = true }
3535crossbeam-channel = { version = " 0.5" , optional = true }
You can’t perform that action at this time.
0 commit comments