Skip to content

Update README to enhance badge visibility and include GitHub stats #7

Update README to enhance badge visibility and include GitHub stats

Update README to enhance badge visibility and include GitHub stats #7

Workflow file for this run

name: Test Coverage
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv sync
uv pip install pytest pytest-cov
- name: Run tests with coverage
run: uv run pytest --cov=pdf2csv --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}