1
Fork 0
mpu6050/.circleci/config.yml
2021-02-15 18:54:07 +01:00

62 lines
1.1 KiB
YAML

version: 2
jobs:
latest:
docker:
- image: circleci/rust:latest
steps:
- checkout
- run:
name: build and test
command: cargo build
fournine:
docker:
- image: circleci/rust:1.49.0
steps:
- checkout
- run:
name: build and test
command: cargo build
foureight:
docker:
- image: circleci/rust:1.48.0
steps:
- checkout
- run:
name: build and test
command: cargo build
fourseven:
docker:
- image: circleci/rust:1.47.0
steps:
- checkout
- run:
name: build and test
command: cargo build
foursix:
docker:
- image: circleci/rust:1.46.0
steps:
- checkout
- run:
name: build and test
command: cargo build
fourfive:
docker:
- image: circleci/rust:1.45.0
steps:
- checkout
- run:
name: build and test
command: cargo build
workflows:
version: 2
build_and_test:
jobs:
- latest
- fournine
- foureight
- fourseven
- foursix
- fourfive