mirror of
https://github.com/imjasonh/krust
synced 2026-07-08 06:45:32 +00:00
The previous commit added vendor/oci-distribution as a git submodule pointer, which caused CI to fail because the files weren't actually present. This commit removes the submodule and adds the actual files directly.
8 lines
170 B
Makefile
8 lines
170 B
Makefile
build +FLAGS='':
|
|
cargo build {{FLAGS}}
|
|
|
|
test:
|
|
cargo fmt --all -- --check
|
|
cargo clippy --workspace
|
|
cargo test --workspace --lib
|
|
cargo test --doc --all
|