IMU package: enable 3D view only if OpenGL preference is active #3430
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 Header Check | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| env: | |
| BUILD_HOST: ubuntu-latest | |
| USERNAME: github-actions | |
| CI_SCRIPT: "ON" | |
| jobs: | |
| check-license-headers: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| name: Validate Scopy GPL License | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| set-safe-directory: 'true' | |
| - name: Run License Scanner Utility | |
| shell: bash | |
| run: | | |
| cd $GITHUB_WORKSPACE | |
| ./tools/license.sh |