Skip to content

feat: Implement hierarchical reinforcement learning framework with sa… #5

feat: Implement hierarchical reinforcement learning framework with sa…

feat: Implement hierarchical reinforcement learning framework with sa… #5

Workflow file for this run

name: CI
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: |
ruff check .
ruff format --check .
- name: Type check
run: pyright
- name: Tests
run: pytest -q