Skip to content

Commit f3383ea

Browse files
committed
Update CI test versions
1 parent 856d342 commit f3383ea

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,17 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
rust: [1.31.0, stable, beta, nightly]
15+
rust: [
16+
1.31.0, # MSRV
17+
1.35.0, # has_copysign
18+
1.37.0, # has_reverse_bits
19+
1.38.0, # has_div_euclid
20+
1.44.0, # has_to_int_unchecked
21+
1.46.0, # has_leading_trailing_ones
22+
stable,
23+
beta,
24+
nightly,
25+
]
1626
steps:
1727
- uses: actions/checkout@v3
1828
- uses: dtolnay/rust-toolchain@master

bors.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
status = [
22
"Test (1.31.0)",
3+
"Test (1.35.0)",
4+
"Test (1.37.0)",
5+
"Test (1.38.0)",
6+
"Test (1.44.0)",
7+
"Test (1.46.0)",
38
"Test (stable)",
49
"Test (beta)",
510
"Test (nightly)",

ci/rustup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
set -ex
66

77
ci=$(dirname $0)
8-
for version in 1.31.0 stable beta nightly; do
8+
for version in 1.31.0 1.35.0 1.37.0 1.38.0 1.44.0 1.46.0 stable beta nightly; do
99
rustup run "$version" "$ci/test_full.sh"
1010
done

0 commit comments

Comments
 (0)