Skip to content

Update README.md

Update README.md #70

Workflow file for this run

name: Tests & Coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10' # veya kullandığın ana sürüm
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install pytest pytest-cov
pip install -e .
- name: Run tests with coverage
run: |
pytest tests/ --cov=hsds --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5.5.3
with:
files: ./coverage.xml