This commit is contained in:
Thom Chiovoloni 2019-03-19 10:49:21 -07:00 коммит произвёл Thom Chiovoloni
Родитель 6856fe4f29
Коммит 8c7843ca4a
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -104,6 +104,14 @@ jobs:
- run: rustup component add rustfmt
- run: rustfmt --version
- run: cargo fmt -- --check
Lint Rust with clippy:
docker:
- image: circleci/rust:latest
steps:
- checkout
- run: rustup component add clippy
- run: cargo clippy --version
- run: cargo clippy --all --all-targets --all-features -- -D warnings
Rust tests - stable:
docker:
- image: circleci/rust:latest
@ -198,6 +206,9 @@ workflows:
check-formating:
jobs:
- Check Rust formatting
clippy:
jobs:
- Lint Rust with clippy
run-tests:
jobs:
- Rust tests - stable