From ab40aecca115b9b0a7d7b33632f46c01e0732690 Mon Sep 17 00:00:00 2001 From: Aman Kumar Date: Wed, 10 Jun 2026 15:15:56 +0530 Subject: [PATCH] Remove CI workflow files --- .github/PULL_REQUEST_TEMPLATE.md | 6 ------ .github/workflows/ci.yml | 28 ---------------------------- 2 files changed, 34 deletions(-) delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md delete mode 100644 .github/workflows/ci.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index 6d711a6..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,6 +0,0 @@ -## Summary -Brief description of changes. - -## Testing -- [ ] All tests pass (`python -m pytest tests/`) -- [ ] Tested with Python 3.8+ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index a623c26..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: CI - -on: - push: - branches: [main, master] - pull_request: - branches: [main, master] - -jobs: - test: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install pytest - - name: Test with pytest - run: | - python -m pytest tests/ -v