Remove CI workflow files

This commit is contained in:
Aman Kumar 2026-06-10 15:15:56 +05:30
parent e59d11fe40
commit ab40aecca1
2 changed files with 0 additions and 34 deletions

View File

@ -1,6 +0,0 @@
## Summary
Brief description of changes.
## Testing
- [ ] All tests pass (`python -m pytest tests/`)
- [ ] Tested with Python 3.8+

View File

@ -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