Skip to content

Issue 551: Added support for collections.abc.Callable in function_wrapper.py #165

Issue 551: Added support for collections.abc.Callable in function_wrapper.py

Issue 551: Added support for collections.abc.Callable in function_wrapper.py #165

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Ray Tests
on:
push:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '**.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test_ray_lower_bound:
name: Ray 2.5.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: make devenv
- name: Setup Ray
run: pip install ray[data]==2.5.0 pyarrow==7.0.0 "duckdb<0.9" pandas==1.5.3 'pydantic<2'
- name: Test
run: make testray
test_ray_latest:
name: Ray Latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: make devenv
- name: Setup Ray
run: pip install -U ray[data]
- name: Test
run: make testray