mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-23 05:07:27 +00:00
28 lines
671 B
YAML
28 lines
671 B
YAML
language: rust
|
|
sudo: false
|
|
|
|
rust:
|
|
- nightly
|
|
- beta
|
|
- stable
|
|
cache:
|
|
- cargo
|
|
matrix:
|
|
allow_failures:
|
|
- rust: nightly
|
|
before_install:
|
|
- cargo install mdbook --version '0.3.1' --debug --force
|
|
- cargo install mdbook-linkcheck --version '0.4.0' --debug --force
|
|
script:
|
|
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --all
|
|
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --tests --all
|
|
- RUST_BACKTRACE=1 CARGO_INCREMENTAL=0 cargo test --examples --all
|
|
- cd book && mdbook build && mdbook test
|
|
deploy:
|
|
provider: pages
|
|
skip-cleanup: true
|
|
github-token: $GITHUB_TOKEN
|
|
local-dir: book/book/html
|
|
keep-history: false
|
|
on:
|
|
branch: master
|