ad9371: add js unit tests #3436
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@v4 | |
| with: | |
| set-safe-directory: 'true' | |
| - name: Run License Scanner Utility | |
| shell: bash | |
| run: | | |
| cd $GITHUB_WORKSPACE | |
| ./tools/license.sh |