Some checks failed
Run Check Script / check (pull_request) Failing after 9s
11 lines
155 B
Bash
Executable File
11 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
rustc --version
|
|
cargo check --all-targets --all-features --keep-going
|
|
cargo fmt --check
|
|
cargo clippy
|
|
cargo test
|