From bf92a370a5ad215fff3e2f692da981c95175b2f3 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sun, 6 Oct 2019 12:53:15 -0400 Subject: [PATCH] Remove circleci config github-actions seems to be working quite well, so no more circle for now --- .circleci/config.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index ffde5e985..000000000 --- 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