From b776c2a44912294913f3f4a37e1dc6a4e8619706 Mon Sep 17 00:00:00 2001 From: Samuel Huang Date: Tue, 1 Oct 2024 00:33:50 -0700 Subject: [PATCH] Retire CircleCI config (#42) --- .circleci/config.yml | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 26de195..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,41 +0,0 @@ -version: 2.1 - -orbs: - python: circleci/python@2.1.1 - -jobs: - build-and-test: - docker: - - image: cimg/python:3.12 - environment: - DJANGO_SETTINGS_MODULE: chowist.settings.test - auth: - username: $DOCKERHUB_USERNAME - password: $DOCKERHUB_PASSWORD - - image: postgres:14 - environment: - POSTGRES_USER: circleci - POSTGRES_PASSWORD: circleci - POSTGRES_DB: circle_test - auth: - username: $DOCKERHUB_USERNAME - password: $DOCKERHUB_PASSWORD - steps: - - checkout - - python/install-packages: - pkg-manager: pip - - run: - name: Lint - command: ruff check - - run: - name: Test - command: coverage run manage.py test - - run: - name: Report - command: coverage report - -workflows: - main: - jobs: - - build-and-test: - context: docker-hub-creds