Files
harmony/build/check.sh
Sylvain Tremblay 6237e1d877
Some checks failed
Run Check Script / check (pull_request) Failing after 27s
feat: brocade module now support vlans
2026-03-24 15:24:32 -04:00

14 lines
196 B
Bash
Executable File

#!/bin/sh
set -e
cd "$(dirname "$0")/.."
git submodule init
git submodule update
rustc --version
cargo check --all-targets --all-features --keep-going
cargo fmt --check
cargo clippy
cargo test