Removes Isaac Sim core extensions from app file to avoid warp conflict #49
Workflow file for this run
This file contains hidden or 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
| # Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md). | |
| # All rights reserved. | |
| # | |
| # SPDX-License-Identifier: BSD-3-Clause | |
| name: Skills Check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - "skills/**" | |
| - ".agents/skills/**" | |
| - ".claude/skills" | |
| - "tools/skills/**" | |
| - ".github/workflows/skills-check.yml" | |
| workflow_dispatch: | |
| concurrency: | |
| group: skills-check-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-skills: | |
| name: Check skills | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Verify skills | |
| run: python3 tools/skills/cli.py check | |
| - name: Install test dependencies | |
| run: python3 -m pip install pytest | |
| - name: Test skills validator | |
| run: python3 -m pytest tools/skills/ |