File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 82
82
matrix :
83
83
os : [windows-2022, macos-latest, ubuntu-latest]
84
84
env :
85
- # If this is changed to pass tests, then set `rust-version` in `Cargo.toml` to the same version.
86
85
version : 1.63.0
87
86
steps :
88
87
- uses : actions/checkout@v4
99
98
- run : cargo build --features zlib-ng-compat --no-default-features
100
99
- run : cargo build --features zlib-ng --no-default-features
101
100
- run : cargo build --features cloudflare_zlib --no-default-features
101
+
102
+ # Minimum Rust compiler to build `flate2` with no optional features
103
+ minimum-build :
104
+ name : Minimum Rust compiler
105
+ runs-on : ubuntu-latest
106
+ env :
107
+ # If this is changed to pass tests, then set `rust-version` in `Cargo.toml` to the same version.
108
+ version : 1.56.1
109
+ steps :
110
+ - uses : actions/checkout@v4
111
+ - name : Install Rust (rustup)
112
+ run : rustup update ${version} --no-self-update && rustup default ${version}
113
+ shell : bash
114
+ - run : cargo build
You can’t perform that action at this time.
0 commit comments