Add the multi_crate test. #94
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
| # Licensed under the Apache License, Version 2.0 or the MIT License. | |
| # SPDX-License-Identifier: Apache-2.0 OR MIT | |
| # Copyright Tock Contributors 2026. | |
| name: license_check | |
| on: pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone tock-registers | |
| uses: actions/checkout@v6 | |
| with: | |
| path: tock-registers | |
| - name: Clone tock/tock | |
| uses: actions/checkout@v6 | |
| with: | |
| path: tock | |
| repository: tock/tock | |
| - name: License check | |
| run: cargo +stable run --manifest-path=../tock/tools/ci/license-checker/Cargo.toml --release | |
| working-directory: tock-registers |