add check step
Some checks failed
Backend Actions / check (push) Failing after 1m24s
Backend Actions / build (push) Successful in 2m59s
Backend Actions / test (push) Failing after 3m14s

This commit is contained in:
2025-07-22 00:23:06 +01:00
parent f2c4c15da1
commit 5fe2d7ba79
3 changed files with 28 additions and 6 deletions

View File

@ -45,7 +45,7 @@ async fn main() {
}
#[allow(clippy::unused_async)]
#[allow(clippy::unused)]
#[allow(unused)]
async fn await_shutdown(rx: mpsc::Receiver<bool>) -> Result<bool, mpsc::RecvError> {
rx.recv()
}

View File

@ -5,6 +5,7 @@ use std::time::Duration;
use axum::extract::Request;
use axum::middleware::{Next, from_fn};
use axum::response::Response;
#[allow(unused_imports)]
use axum::routing::{get, post};
use axum::{Router, body::Body};
use http::StatusCode;