Skip to content

Feature/c tiffwriter #1467

Feature/c tiffwriter

Feature/c tiffwriter #1467

Workflow file for this run

name: CodeCov
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Install minimal dependencies
run: |
sudo apt update
sudo apt install -y libopenslide0 libgeos-dev libvips42 libtiff5-dev
- 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 setuptools wheel coverage scikit-build
python -m pip install -e ".[dev]"
- name: Run Coverage
run: |
coverage run -m pytest
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}