Skip to content

Merge branch 'master' into 18-support-for-python-310 #13

Merge branch 'master' into 18-support-for-python-310

Merge branch 'master' into 18-support-for-python-310 #13

name: run tests on demand on multiple platforms
on:
push:
branches-ignore:
- 'master'
- 'develop'
jobs:
build:
if: ${{contains(github.event.head_commit.message, '[runtests]')}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
os: [ubuntu-latest]
extras: [noextras, pytorch, foolbox]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install with extras
if: ${{ matrix.extras != 'noextras' }}
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
pip install -r requirements.txt
python -m pip install -e .[unittests,${{ matrix.extras }}]
- name: Install noextras
if: ${{ matrix.extras == 'noextras' }}
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
pip install -r requirements.txt
python -m pip install -e .[unittests]
- name: Test with pytest
run: |
pytest