Skip to content

Bump version to 0.3.2. #81

Bump version to 0.3.2.

Bump version to 0.3.2. #81

Workflow file for this run

name: Test imagededup
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "cython>=0.29"
pip install -e ".[tests, docs]"
- name: Test with pytest
run: |
pip install pytest
pytest -vs --show-capture=no tests