Skip to content

increate RAY_CGRAPH_get_timeout for multinode models #26

increate RAY_CGRAPH_get_timeout for multinode models

increate RAY_CGRAPH_get_timeout for multinode models #26

name: lint_and_tests
on:
# Trigger the workflow on push to master or any pull request
push:
pull_request:
branches:
- main
jobs:
build:
strategy:
max-parallel: 8
matrix:
platform: [32-core-ubuntu]
python-version: ["3.10", "3.11"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install
run: |
python --version
python -m pip install --upgrade 'pip>=22.1.2'
python -m pip show pip
python -m pip install -e '.'
python -m pip install -e '.[dev]'
- name: isort
run: isort --check --diff .
- name: black
run: black --check --diff .
- name: pytest
run: pytest || true
- name: mypy
run: mypy