~repos /rust-embed
git clone https://pyrossh.dev/repos/rust-embed.git
rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
bd942230
—
AzureMarker 3 years ago
Add axum to CI
.github/workflows/test.yml
CHANGED
|
@@ -37,8 +37,10 @@ jobs:
|
|
|
37
37
|
cargo test --test interpolated_path --features "interpolate-folder-path" --release
|
|
38
38
|
cargo build --example basic
|
|
39
39
|
cargo build --example actix --features actix
|
|
40
|
+
cargo build --example axum --features axum-ex
|
|
40
41
|
cargo build --example warp --features warp-ex
|
|
41
42
|
cargo test --test lib --release
|
|
42
43
|
cargo build --example basic --release
|
|
43
44
|
cargo build --example actix --features actix --release
|
|
45
|
+
cargo build --example axum --features axum-ex --release
|
|
44
46
|
cargo build --example warp --features warp-ex --release
|