Remove circleci config

github-actions seems to be working quite well, so no more circle for now
This commit is contained in:
Griffin Smith 2019-10-06 12:53:15 -04:00
parent de8052cef8
commit bf92a370a5

View file

@ -1,37 +0,0 @@
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