Skip to content

Commit 5c1f573

Browse files
authored
fix ci (#46)
* updates Signed-off-by: Jess Frazelle <[email protected]> * updates Signed-off-by: Jess Frazelle <[email protected]> * updates Signed-off-by: Jess Frazelle <[email protected]> --------- Signed-off-by: Jess Frazelle <[email protected]>
1 parent e6b4be3 commit 5c1f573

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/cargo-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
shell: bash
4040
run: |
4141
cargo build --all
42-
cargo nextest run --all --test-threads=1 --no-fail-fast
42+
cargo test --all

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ schemars = "0.8"
1717
serde = "1.0"
1818
serde_json = "1.0"
1919
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "net", "time", "io-util"] }
20+
21+
[lints.rust]
22+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable, tokio_taskdump)'] }

src/os_linux.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ use serde::Serialize;
55

66
use crate::Context;
77

8-
/// Request a coredump be taken of the process.
9-
#[derive(Clone, Debug, PartialEq, JsonSchema, Serialize)]
10-
struct CoredumpRequest {}
11-
128
/// Response from a coredump (you'll never see one of these), since if
139
/// a coredump is successful the process will be killed, and if not
1410
/// there should be an HTTP Error returned.

0 commit comments

Comments
 (0)