Skip to content

chore(deps): bump the cargo-deps group with 6 updates #404

chore(deps): bump the cargo-deps group with 6 updates

chore(deps): bump the cargo-deps group with 6 updates #404

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-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'