Skip to content

feat: add gymnasium wrapper #127

feat: add gymnasium wrapper

feat: add gymnasium wrapper #127

Workflow file for this run

name: codestyle check
on:
push:
branches:
- dev
- main
pull_request:
branches:
- dev
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.17"
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Set up Python
run: uv python install
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: check codestyle
run: |
uv run ruff check --config pyproject.toml --diff .
- name: check type hints
run: |
uv run pyright --project=pyproject.toml