Skip to content

Change the version number in setup.py from 0.0.1 to 1.0.0 #18

Change the version number in setup.py from 0.0.1 to 1.0.0

Change the version number in setup.py from 0.0.1 to 1.0.0 #18

Workflow file for this run

name: shapesimilarity ci
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.12]
steps:
- 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 coverage pytest pytest-cov
- name: Install shapesimilarity
run: |
python -m pip install . --no-cache-dir
- name: Test with pytest
run: |
pytest --cov=shapesimilarity --cov-report=xml -p no:warnings tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
directory: ./coverage/reports/
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
verbose: false