# See lastest version from: https://circleci.com/docs/2.0/configuration-reference version: 2.1 jobs: build: docker: # See lastest version from: https://circleci.com/developer/images/image/cimg/rust - image: cimg/rust:1.50.0 steps: - checkout - run: rustup --version - run: rustc --version - run: cargo --version - run: cargo build --verbose --all - run: sh run_tests.sh