RLS Version 0.7.5 #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test mahotas-imread | |
on: [push] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.6', '3.7', '3.8', '3.9'] | |
numpy-version: ['1.17', '1.18', '1.19', '1.20', '1.21'] | |
exclude: | |
# 3.6 is too old for NumPy 1.20/1.21 | |
- python-version: '3.6' | |
numpy-version: '1.20' | |
- python-version: '3.6' | |
numpy-version: '1.21' | |
# NumPy 1.17/1.18 are too old for Python 3.9 | |
- python-version: '3.9' | |
numpy-version: '1.17' | |
- python-version: '3.9' | |
numpy-version: '1.18' | |
max-parallel: 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: imread_test_env | |
python-version: ${{ matrix.python-version }} | |
auto-activate-base: false | |
- name: Add conda to system path | |
run: | | |
# $CONDA is an environment variable pointing to the root of the miniconda directory | |
echo $CONDA/bin >> $GITHUB_PATH | |
- name: Install dependencies | |
run: | | |
conda install --name imread_test_env python=${{ matrix.python-version }} numpy=${{ matrix.numpy-version }} | |
conda install --quiet --yes -n imread_test_env jpeg libpng libwebp libtiff gcc_linux-64 gxx_linux-64 coveralls pytest | |
- name: Build | |
shell: bash -l {0} | |
run: | | |
conda activate imread_test_env | |
make debug | |
- name: Test with pytest | |
shell: bash -l {0} | |
run: | | |
conda activate imread_test_env | |
python -m pytest -v |