1
Fork 0
mpu6050/.circleci/config.yml
2019-06-07 10:52:04 +02:00

17 lines
262 B
YAML

version: 2
jobs:
latest:
docker:
- image: circleci/rust:latest
steps:
- checkout
- run:
name: build and test
command: cargo build && cargo test
workflows:
version: 2
build_and_test:
jobs:
- latest