1
0
mirror of https://github.com/actix/examples synced 2025-06-29 02:10:36 +02:00

update docker sample by caching dependencies

Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
This commit is contained in:
Jérémie Drouet
2020-05-27 22:01:26 +02:00
parent e4b94fc9a5
commit 10887568a0
3 changed files with 37 additions and 21 deletions

View File

@ -24,3 +24,11 @@ async fn main() -> std::io::Result<()> {
.run()
.await
}
#[cfg(test)]
mod tests {
#[test]
fn sample_test() {
assert!(true);
}
}