travis: Add a lint stage.
parent
583dbb07a5
commit
18f6cbc23a
|
@ -7,10 +7,17 @@ addons:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
- stage: Lint
|
||||||
|
- os: linux
|
||||||
|
script:
|
||||||
|
- cargo fmt --all -- --check
|
||||||
|
|
||||||
|
- stage: Test
|
||||||
- os: linux
|
- os: linux
|
||||||
dist: bionic
|
dist: bionic
|
||||||
|
|
||||||
- os: osx
|
- os: osx
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
name: Coverage
|
name: Coverage
|
||||||
before_script:
|
before_script:
|
||||||
|
@ -43,11 +50,9 @@ jobs:
|
||||||
cargo test --target wasm32-unknown-unknown --no-default-features
|
cargo test --target wasm32-unknown-unknown --no-default-features
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- rustup component add rustfmt
|
- rustup component add rustfmt
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo fmt --all -- --check
|
|
||||||
- cargo build
|
- cargo build
|
||||||
- cargo test
|
- cargo test
|
||||||
|
|
Loading…
Reference in New Issue