RSDK-10891: implement 'extra' field in SetPowerMode #2340
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
| name: License Finder | |
| on: | |
| workflow_dispatch: | |
| workflow_call: | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| license_finder: | |
| if: github.repository_owner == 'viamrobotics' | |
| name: Audit 3rd-Party Licenses | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: "3.13" | |
| - name: Setup Python | |
| run: | | |
| uv python install | |
| uv sync | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.3" | |
| - run: gem install license_finder | |
| - name: Generate requirements.txt (exclude dev dependencies) | |
| run: | | |
| uv pip compile pyproject.toml -o requirements.txt | |
| - name: Run license finder | |
| run: | | |
| license_finder --prepare |