mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-16 10:49:55 +00:00
20 lines
384 B
YAML
20 lines
384 B
YAML
language: rust
|
|
|
|
before_script:
|
|
- rustup component add rustfmt
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- rust: nightly
|
|
os: linux
|
|
- rust: nightly
|
|
os: osx
|
|
- rust: nightly-x86_64-pc-windows-msvc
|
|
os: windows
|
|
|
|
script:
|
|
- cargo check --all --benches --bins --examples --tests
|
|
- cargo test --all
|
|
- cargo doc --features docs
|
|
- cargo fmt --all -- --check
|