rust-embed v8.11.0
git clone https://git.pyrossh.dev/rust-embed
rust macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
bd94223
— AzureMarker
2021-12-07T21:41:17-08:00
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
|