Skip to content

Add an init_from_scratch option, fix Ray controller for multiple setups, and fix some dead codes. #163

Add an init_from_scratch option, fix Ray controller for multiple setups, and fix some dead codes.

Add an init_from_scratch option, fix Ray controller for multiple setups, and fix some dead codes. #163

Workflow file for this run

name: Check Formatting
on: [pull_request]
jobs:
check_formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
pip install isort black clang-format
- name: Check Python formatting with isort
run: isort --check-only .
- name: Check Python formatting with black
run: black --check .
- name: Check C++ formatting
run: |
find . -type f \( -name '*.c' -o -name '*.h' -o -name '*.cpp' -o -name '*.hpp' -o -name '*.cu' -o -name '*.cuh' \) -exec clang-format --dry-run --Werror {} +