Skip to content

Add support for Ray in running trials, fix Pandas warning #668

Add support for Ray in running trials, fix Pandas warning

Add support for Ray in running trials, fix Pandas warning #668

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10"]
steps:
- name: Checking out repo
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make venv
- name: Testing and coverage
run: make slowcov
timeout-minutes: 360