Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/tools/ci/src/commands/mod.rs
6598 views
1
pub use bench_check::*;
2
pub use clippy::*;
3
pub use compile::*;
4
pub use compile_check::*;
5
pub use compile_fail::*;
6
pub use doc::*;
7
pub use doc_check::*;
8
pub use doc_test::*;
9
pub use example_check::*;
10
pub use format::*;
11
pub use integration_test::*;
12
pub use integration_test_check::*;
13
pub use integration_test_clean::*;
14
pub use lints::*;
15
pub use test::*;
16
pub use test_check::*;
17
18
mod bench_check;
19
mod clippy;
20
mod compile;
21
mod compile_check;
22
mod compile_fail;
23
mod doc;
24
mod doc_check;
25
mod doc_test;
26
mod example_check;
27
mod format;
28
mod integration_test;
29
mod integration_test_check;
30
mod integration_test_clean;
31
mod lints;
32
mod test;
33
mod test_check;
34
35