File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name: cmov
3
3
on :
4
4
pull_request :
5
5
paths :
6
+ - " .github/workflows/cmov.yml"
6
7
- " cmov/**"
7
8
- " Cargo.*"
8
9
push :
76
77
toolchain : ${{ matrix.rust }}
77
78
targets : ${{ matrix.target }}
78
79
- run : ${{ matrix.deps }}
79
- - run : cargo test
80
+ - run : cargo test --target ${{ matrix.target }}
80
81
81
82
# Cross-compiled tests
82
83
cross :
Original file line number Diff line number Diff line change 7
7
- " fiat-constify/**"
8
8
- " Cargo.*"
9
9
push :
10
- branches : main
10
+ branches : master
11
11
12
12
defaults :
13
13
run :
Original file line number Diff line number Diff line change 7
7
- " hybrid-array/**"
8
8
- " Cargo.*"
9
9
push :
10
- branches : main
10
+ branches : master
11
11
12
12
defaults :
13
13
run :
41
41
minimal-versions :
42
42
uses : RustCrypto/actions/.github/workflows/minimal-versions.yml@master
43
43
with :
44
- working-directory : ${{ github.workflow }}
44
+ working-directory : ${{ github.workflow }}
45
45
46
46
test :
47
47
strategy :
Original file line number Diff line number Diff line change 7
7
- " zeroize/**"
8
8
- " Cargo.*"
9
9
push :
10
- branches : main
10
+ branches : master
11
11
12
12
defaults :
13
13
run :
43
43
minimal-versions :
44
44
uses : RustCrypto/actions/.github/workflows/minimal-versions.yml@master
45
45
with :
46
- working-directory : ${{ github.workflow }}
46
+ working-directory : ${{ github.workflow }}
47
47
48
48
test :
49
49
strategy :
94
94
# Isolate this crate from workspace which is otherwise MSRV 1.56 due to 2021 edition crates
95
95
- run : rm ../Cargo.toml
96
96
- run : ${{ matrix.deps }}
97
- - run : cargo test
98
- - run : cargo test --all-features
97
+ - run : cargo test --target ${{ matrix.target }}
98
+ - run : cargo test --target ${{ matrix.target }} -- all-features
99
99
100
100
# Feature-gated ARM64 SIMD register support (MSRV 1.59)
101
101
aarch64 :
You can’t perform that action at this time.
0 commit comments