ElemRV-N: Fix HyperBus #10
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
| # SPDX-FileCopyrightText: 2025 aesc silicon | |
| # | |
| # SPDX-License-Identifier: CERN-OHL-W-2.0 | |
| # This workflow checks for missing license or copyright identifiers | |
| name: Scala License Check | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup Python | |
| uses: actions/setup-python@v2 | |
| - name: Install REUSE | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install reuse | |
| - name: Check License | |
| run: | | |
| reuse lint |