Skip to content

Merge pull request #281 from arogozhnikov/dev #296

Merge pull request #281 from arogozhnikov/dev

Merge pull request #281 from arogozhnikov/dev #296

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.10']
# currently there is conflict between tf, oneflow and paddle in protobuf versions.
# cupy is not tested because it demands gpu
frameworks: ['numpy pytorch tensorflow jax oneflow', 'numpy paddle chainer']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: |
python test.py ${{ matrix.frameworks }}