Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0

- name: Run MegaLinter
uses: oxsecurity/megalinter/flavors/python@v9.4.0
uses: oxsecurity/megalinter/flavors/python@v10.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -40,4 +40,4 @@ jobs:
name: megalinter-reports
path: |
megalinter-reports
mega-linter.log
mega-linter.log
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
name: Test Runner PoseData
on: [push]
on: # yamllint disable-line rule:truthy
push:

jobs:
test:
runs-on: self-hosted
steps:
- run: echo "Runner is working!"
- run: echo "Runner is working!"
5 changes: 3 additions & 2 deletions .mega-linter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# Keep MegaLinter focused on checks that are useful across these Python repos
# before strict typing, spelling, and security-scan baselines are established.
# Keep MegaLinter focused on project-owned code. SKEL is vendored upstream
# material and is therefore excluded from repository-wide lint enforcement.
ENABLE_LINTERS:
- ACTION_ACTIONLINT
- MARKDOWN_MARKDOWNLINT
Expand All @@ -13,3 +13,4 @@ VALIDATE_ALL_CODEBASE: true
PRINT_ALPACA: false
SHOW_ELAPSED_TIME: true
FLAVOR_SUGGESTIONS: false
FILTER_REGEX_EXCLUDE: '(^SKEL/)'
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def check_all_joint_limit_violations(skel_poses, n_frames):
joint_names = [SMPL_JOINT_NAMES.get(j, f'joint_{j}') for j in joints_here]
print(f"\nFrame {f}:")
print(f" Raw-jump flagged SMPL joints: {joint_names}")
print(f" SKEL limit violations:")
print(" SKEL limit violations:")
for name, val, limits in skel_violations[f]:
print(f" {name}: {val:.3f} rad, limit {limits}")

Expand All @@ -145,4 +145,4 @@ def check_all_joint_limit_violations(skel_poses, n_frames):

print("\n--- All SKEL limit-violation frames ---")
for f, vlist in sorted(skel_violations.items()):
print(f" Frame {f}: {[v[0] for v in vlist]}")
print(f" Frame {f}: {[v[0] for v in vlist]}")
Loading
Loading