Skip to content

fix(grey_dilate): threads was inoperative #71

fix(grey_dilate): threads was inoperative

fix(grey_dilate): threads was inoperative #71

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
run_tests:
name: Test ${{ matrix.os }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2019]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pybind11 setuptools wheel
- name: Compile
run: python setup.py develop
- name: Test with pytest
run: python -m pytest -v -x automated_test.py