From 76ff7f3b0d2dba8ff69ea076bd40fc634a870c08 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 9 Dec 2023 00:42:09 -0500 Subject: [PATCH] chore: remove circleci as tests now run in github actions --- .circleci/config.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index f23481c..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,23 +0,0 @@ -version: 2.1 - -orbs: - python: circleci/python@0.3.2 - -jobs: - build-and-test: - executor: python/default - steps: - - checkout - - python/load-cache - - run: - command: pip install flake8 - name: Install dependencies - - python/save-cache - - run: - command: flake8 --ignore=E501 - name: Lint - -workflows: - main: - jobs: - - build-and-test