All checks were successful
Run Check Script / check (pull_request) Successful in 1m52s
14 lines
329 B
Bash
Executable File
14 lines
329 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Ensure vendor submodules are present (needed by opnsense-codegen tests)
|
|
git submodule update --init --depth 1 opnsense-codegen/vendor/core opnsense-codegen/vendor/plugins
|
|
|
|
rustc --version
|
|
cargo check --all-targets --all-features --keep-going
|
|
cargo fmt --check
|
|
cargo clippy
|
|
cargo test
|