diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index a1d3259..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,31 +0,0 @@ -version: 2.1 - -orbs: - python: circleci/python@2.1.1 - -jobs: - build-and-test: - docker: - - image: cimg/python:3.12 - auth: - username: $DOCKERHUB_USERNAME - password: $DOCKERHUB_PASSWORD - steps: - - checkout - - python/install-packages: - pkg-manager: pip - - run: - command: ruff check - name: Lint - - run: - command: mypy githooks bundle - name: Type Check - - run: - command: pytest - name: Test - -workflows: - main: - jobs: - - build-and-test: - context: docker-hub-creds