Skip to content
This repository has been archived by the owner on Feb 10, 2025. It is now read-only.

feat: show collision motion group #5

feat: show collision motion group

feat: show collision motion group #5

Workflow file for this run

name: check
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
PIP_CACHE_DIR: ${{ github.workspace }}/.cache/pip
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10.16
- name: Set up Python environment
run: |
pip install poetry
poetry install
- name: Check formatting with ruff
run: poetry run ruff format --check .
- name: Check ruff for linting
run: poetry run ruff check .