* Exclude benchmarks from testing
@@ -11,6 +11,7 @@ on:
- .github/**
- lib.rs
- Cargo.toml
+ - Makefile.toml
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
@@ -42,7 +42,7 @@ private = true
[tasks.test]
dependencies = ["build"]
command = "cargo"
-args = ["test", "--all-targets", "--workspace", "--exclude", "dioxus-router"]
+args = ["test", "--lib", "--bins", "--tests", "--examples", "--workspace", "--exclude", "dioxus-router"]
private = true
[tasks.test-with-browser]