about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2019-10-06T16·53-0400
committerGriffin Smith <root@gws.fyi>2019-10-06T16·53-0400
commitbf92a370a5ad215fff3e2f692da981c95175b2f3 (patch)
tree5c019b357645c7c104b775c6df0e57f2b1fd8ce7
parentde8052cef8a9f749cdb2312a4f5ae5f5a44cf1b8 (diff)
Remove circleci config
github-actions seems to be working quite well, so no more circle for now
-rw-r--r--.circleci/config.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
deleted file mode 100644
index ffde5e985462..000000000000
--- a/.circleci/config.yml
+++ /dev/null
@@ -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