Skip to content

Merge pull request #41 from janelia-cellmap/radius-of-gyration #105

Merge pull request #41 from janelia-cellmap/radius-of-gyration

Merge pull request #41 from janelia-cellmap/radius-of-gyration #105

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Upgrade pip and install build tools
run: |
python -m pip install --upgrade pip
pip install numpy Cython setuptools wheel build
- name: Install project and dev dependencies
run: pip install .[dev]
- name: Run tests with coverage
run: |
pytest --cov=cellmap_analyze --cov-report=xml
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4.2.0
with:
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}