This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
md-pdf-rs/.travis.yml

19 lines
407 B
YAML

language: rust
rust:
- stable
cache: cargo
before_script:
- export PATH="$PATH:$HOME/.cargo/bin"
- which rustfmt || cargo install rustfmt
script:
- ./scripts/install-deps.sh
- cargo fmt -- --write-mode=diff
- cargo build
- cargo build --release
- cargo test
- cargo test --release
- cd test-files && cargo run --release -- build && cd -
- cd test-files && cargo run -- build && cd -