Skip to content

chore(deps): bump clap from 4.4.7 to 4.4.8 #225

chore(deps): bump clap from 4.4.7 to 4.4.8

chore(deps): bump clap from 4.4.7 to 4.4.8 #225

Workflow file for this run

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-2023-08-19
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 CoDiOS/codictl
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'