Skip to content

Bm13xx chain example bitcrane s19jpro #51

Bm13xx chain example bitcrane s19jpro

Bm13xx chain example bitcrane s19jpro #51

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Rust
uses: actions/checkout@v4
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libudev-dev
version: 1.0
with:

Check failure on line 26 in .github/workflows/rust-ci.yml

View workflow run for this annotation

GitHub Actions / Rust CI

Invalid workflow file

The workflow is not valid. .github/workflows/rust-ci.yml (Line: 26, Col: 9): 'with' is already defined
packages: libftdi1-dev
version: 1.5
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose
- name: Format
run: cargo fmt --check
- name: Clippy
run: cargo clippy --verbose -- -D warnings
- name: Audit
run: cargo audit