tvl-depot/.circleci/config.yml
Griffin Smith 82cefedab9 Fix a bunch more Clippy lints, but disable in Circle
The unused error is causing more trouble than it's worth at this
point
2019-08-03 20:31:42 -04:00

37 lines
647 B
YAML

version: 2.1
orbs:
rust: glotrade/rust@0.1.3
jobs:
build:
executor: rust/default
steps:
- checkout
- rust/update_toolchain
- rust/build
test:
executor: rust/default
steps:
- checkout
- rust/update_toolchain
- rust/test
format:
executor: rust/default
steps:
- checkout
- rust/update_toolchain
- rust/format
# lint:
# executor: rust/default
# steps:
# - checkout
# - rust/update_toolchain
# - rust/clippy
workflows:
default:
jobs:
# - lint
- format
- build
- test:
requires:
- build