Skip to content

adding cupy to requirements #3

adding cupy to requirements

adding cupy to requirements #3

Workflow file for this run

name: Run Tests with Pytest
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install pytest
- name: Run pytest
run: |
pytest