diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a023a48..af03737 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: check + args: --all-targets fmt: name: fmt @@ -49,4 +50,4 @@ jobs: - uses: actions-rs/cargo@v1 with: command: clippy - args: -- -D warnings + args: --all-targets -- -D warnings diff --git a/Cargo.toml b/Cargo.toml index 9f7709b..cac501f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,13 @@ readme = "README.md" exclude = ["assets/*", "static/*"] [dependencies] +bevy = { version = "0.13", default-features = false, features = [ + "bevy_render", + "bevy_core_pipeline", + "bevy_winit" +] } + +[dev-dependencies] bevy = { version = "0.13", default-features = false, features = [ "bevy_render", "bevy_core_pipeline",