From ac03a5d4429b3ec99edb4f88b4cd3b3733dce736 Mon Sep 17 00:00:00 2001 From: iristianyiz Date: Tue, 3 Dec 2024 23:52:39 -0800 Subject: [PATCH] Delete .github/workflows/ci.yml --- .github/workflows/ci.yml | 46 ---------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index a52bcdbe..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Python CI Pipeline - -on: - push: - branches: [master, main] - pull_request: - branches: [master, main] - -jobs: - test: - runs-on: ubuntu-latest # Use the latest Ubuntu runner - - steps: - - name: Checkout Code - uses: actions/checkout@v4 # Checkout the repository - - - name: Set up Python - uses: actions/setup-python@v5 # Set up Python environment - with: - python-version: "3.11" - - - name: Install dependencies - run: | - python -m pip install --upgrade pip # Upgrade pip to the latest version - pip install setuptools wheel - pip install -r requirements.txt # Install dependencies from requirements.txt - pip install pylint pytest - - - name: Run Tests - run: | - python -m pytest tests/ - - - name: Run Pylint - run: | - pylint $(git ls-files '*.py') - - - name: Print Success Message - run: | - echo "CI Pipeline completed successfully!" - echo "========================" - echo "✓ Code checked out" - echo "✓ Python environment set up" - echo "✓ Dependencies installed" - echo "✓ Tests executed" - echo "✓ Linting completed" - echo "========================"