Files
bdwgc-rust/.circleci/config.yml
Yota Toyama eecb34bb93 Lint on CI
2019-06-01 22:19:11 +00:00

14 lines
295 B
YAML

version: 2
jobs:
build:
docker:
- image: rustlang/rust:nightly
steps:
- checkout
- run: git submodule update --init --recursive
- run: cargo build
- run: |
rustup component add clippy
cargo clippy
- run: cd examples && ./test.sh