Skip to content

refactor: replace NodeContext with higher-level Ray interface #48

refactor: replace NodeContext with higher-level Ray interface

refactor: replace NodeContext with higher-level Ray interface #48

Workflow file for this run

name: Test Python package
on:
push:
branches: [ "master" ]
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install project
run: poetry install --no-interaction --with dev
- name: Test with pytest
run: poetry run pytest