File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed
Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : digest-io
2+
3+ on :
4+ pull_request :
5+ paths :
6+ - " digest-io/**"
7+ - " Cargo.*"
8+ push :
9+ branches : master
10+
11+ permissions :
12+ contents : read
13+
14+ defaults :
15+ run :
16+ working-directory : digest-io
17+
18+ env :
19+ CARGO_INCREMENTAL : 0
20+ RUSTFLAGS : " -Dwarnings"
21+
22+ jobs :
23+ minimal-versions :
24+ uses : RustCrypto/actions/.github/workflows/minimal-versions.yml@master
25+ with :
26+ working-directory : ${{ github.workflow }}
27+
28+ test :
29+ runs-on : ubuntu-latest
30+ strategy :
31+ matrix :
32+ rust :
33+ - 1.85.0 # MSRV
34+ - stable
35+ steps :
36+ - uses : actions/checkout@v4
37+ - uses : RustCrypto/actions/cargo-cache@master
38+ - uses : dtolnay/rust-toolchain@master
39+ with :
40+ toolchain : ${{ matrix.rust }}
41+ - run : cargo test --no-default-features
42+ - run : cargo test
43+ - run : cargo test --all-features
You can’t perform that action at this time.
0 commit comments