tvl-depot/.circleci/config.yml

38 lines
647 B
YAML
Raw Normal View History

2019-07-29 02:44:09 +02:00
version: 2.1
orbs:
rust: glotrade/rust@0.1.3
2019-07-29 02:51:01 +02:00
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
2019-07-29 02:51:01 +02:00
workflows:
default:
jobs:
# - lint
2019-07-29 02:51:01 +02:00
- format
- build
- test:
requires:
- build