blob: c28b88e2d32f75d448b6d092703d54ed21d6c090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- name: "master doc to gh-pages"
rust: nightly
script:
- cargo doc --no-deps
deploy:
provider: script
script: curl -LsSf https://git.io/fhJ8n | rustc - && (cd target/doc && ../../rust_out)
skip_cleanup: true
on:
branch: master
script:
- cargo test
- cargo test --features preserve_order
- cargo test --manifest-path test-suite/Cargo.toml
- rustdoc --test README.md -L target
notifications:
email:
on_success: never
|