Support reducing a model considering non-zero positions of removed joints #1095
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Style | |
on: | |
push: | |
branches: [ "**" ] | |
tags-ignore: [ "**" ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
black: | |
name: black | |
runs-on: ubuntu-latest | |
steps: | |
- name: "🔀 Checkout repository" | |
uses: actions/checkout@v4 | |
- name: '🐍 Initialize Python' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.*" | |
# Note: the black version needs to be in sync with what | |
# specified in setup.cfg. | |
- name: "📝 Black Code Formatter" | |
uses: psf/black@stable | |
with: | |
options: "--check --diff --color" | |
version: "~= 24.0" | |
isort: | |
name: isort | |
runs-on: ubuntu-latest | |
steps: | |
- name: "🔀 Checkout repository" | |
uses: actions/checkout@v4 | |
- name: '🐍 Initialize Python' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.*" | |
# Workaround for https://github.com/isort/isort-action/issues/70 | |
- run: pip install colorama | |
- name: "📝 isort" | |
uses: isort/isort-action@master | |
with: | |
configuration: "--check --diff --color" | |
ruff: | |
name: ruff | |
runs-on: ubuntu-latest | |
steps: | |
- name: "🔀 Checkout repository" | |
uses: actions/checkout@v4 | |
- name: "📝 Ruff" | |
uses: chartboost/ruff-action@v1 |