Files
smartcore/.circleci/config.yml
2020-06-05 18:00:56 -07:00

27 lines
559 B
YAML

version: 2.1
jobs:
build:
docker:
- image: circleci/rust:latest
environment:
TZ: "/usr/share/zoneinfo/your/location"
steps:
- checkout
- restore_cache:
key: project-cache
- run:
name: Check formatting
command: cargo fmt -- --check
- run:
name: Stable Build
command: cargo build
- run:
name: Test
command: cargo test
- save_cache:
key: project-cache
paths:
- "~/.cargo"
- "./target"