We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 483200b commit 32fb1a7Copy full SHA for 32fb1a7
.travis.yml
@@ -27,9 +27,5 @@ addons:
27
packages:
28
- libopenblas-dev
29
- gfortran
30
-before_script:
31
- - rustup component add rustfmt
32
script:
33
- - |
34
- cargo fmt --all -- --check &&
35
- ./scripts/all-tests.sh "$FEATURES" "$CHANNEL"
+ - ./scripts/all-tests.sh "$FEATURES" "$CHANNEL"
scripts/all-tests.sh
@@ -6,6 +6,7 @@ set -e
6
FEATURES=$1
7
CHANNEL=$2
8
9
+([ "$CHANNEL" != "beta" ] || (rustup component add rustfmt && cargo fmt --all -- --check))
10
cargo build --verbose --no-default-features
11
cargo test --verbose --no-default-features
12
cargo test --release --verbose --no-default-features
0 commit comments