Skip to content

Adds a high PD config to the new asset for IK #35

Adds a high PD config to the new asset for IK

Adds a high PD config to the new asset for IK #35

Workflow file for this run

name: Lint & Format Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Run Lint Checks
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files