chore(deps): bump clap from 4.5.36 to 4.5.37 in the cargo-deps group #444
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: CoDiOS CI tests | |
| 'on': | |
| - push | |
| - pull_request | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| tests: | |
| name: Run tests on all Rust channels | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: nightly-2024-04-11 | |
| profile: minimal | |
| components: clippy | |
| override: true | |
| target: thumbv7em-none-eabihf | |
| default: true | |
| - name: Setup Cargo binary caching/installation action | |
| uses: actions-rs/[email protected] | |
| with: | |
| crate: cross | |
| version: latest | |
| use-tool-cache: true | |
| - name: Build debug CoDiOSl | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: build | |
| args: '--features firmware --target=thumbv7em-none-eabihf' | |
| use-cross: true | |
| - name: Run tests | |
| if: false | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: '--features firmware --target=thumbv7em-none-eabihf' | |
| use-cross: true | |
| - name: Run Clippy checks | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| use-cross: true | |
| command: clippy | |
| args: '--features firmware --target=thumbv7em-none-eabihf' |