Merge a0bc35baeccadc99591403643f0ba7503fdde22b into 83679a892e2d95755f2dac6acb0bfd1e9ac5d548

This commit is contained in:
Pranshu Saraswat 2025-11-25 17:43:43 +01:00 committed by GitHub
commit cfb906224c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

32
.github/workflows/python-ci.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: Python CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13' # Set your specific Python version here
cache: 'pip'
cache-dependency-path: |
requirements.txt
requirements-test.txt
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-test.txt
# Add more steps here, like running your tests
- name: Run tests
run: |
pytest # Replace with your test command