We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73e69b commit d50af75Copy full SHA for d50af75
.github/workflows/ci.yaml
@@ -38,7 +38,7 @@ jobs:
38
- name: Clippy
39
run: cargo clippy -- -Dwarnings
40
- name: Tests
41
- run: cargo test -- --format junit --logfile target/report.xml
+ run: cargo test -- --report-time --format junit --logfile target/report.xml
42
- name: Publish Test Report
43
uses: mikepenz/action-junit-report@v5
44
if: success() || failure() # always run even if the previous step fails
Cargo.toml
@@ -10,6 +10,7 @@ description.workspace = true
10
[[bin]]
11
name = "wasm-rquickjs"
12
path = "src/main.rs"
13
+test = false
14
15
[dependencies]
16
"wasm-rquickjs" = { path = "crates/wasm-rquickjs", version = "0.0.0" }
0 commit comments