62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
version: 2
|
|
jobs:
|
|
latest:
|
|
docker:
|
|
- image: circleci/rust:latest
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build && cargo test
|
|
threefour:
|
|
docker:
|
|
- image: circleci/rust:1.34.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build && cargo test
|
|
threethree:
|
|
docker:
|
|
- image: circleci/rust:1.33.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build && cargo test
|
|
threetwo:
|
|
docker:
|
|
- image: circleci/rust:1.33.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build && cargo test
|
|
threeone:
|
|
docker:
|
|
- image: circleci/rust:1.33.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build && cargo test
|
|
threezero:
|
|
docker:
|
|
- image: circleci/rust:1.33.0
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build and test
|
|
command: cargo build && cargo test
|
|
|
|
workflows:
|
|
version: 2
|
|
build_and_test:
|
|
jobs:
|
|
- latest
|
|
- threefour
|
|
- threethree
|
|
- threetwo
|
|
- threeone
|
|
- threezero
|
|
|