#11239: Add APIs to read and clear FPU/SFPU special number registers #106
This file contains 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: "[post-commit] Static-check: license" | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
workflow_call: | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
check-spdx-licenses: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
cache: 'pip' | |
cache-dependency-path: infra/requirements-infra.txt | |
- name: Install infra deps | |
run: python -m pip install -r infra/requirements-infra.txt | |
- name: Check SPDX licenses | |
run: python -m check_copyright --verbose --dry-run --config ./infra/check_copyright_config.yaml . |