File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7878 save-if : ${{ github.ref == 'refs/heads/main' }}
7979
8080 - name : Check documentation
81- run : cargo doc --workspace --document-private-items --no-deps
81+ run : cargo doc --workspace --no-default-features -- document-private-items --no-deps
8282
8383 # Run tests
8484
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ exclude = ["assets/example.gif", "assets/example3d.gif"]
1313
1414[features ]
1515default = [
16- # In practice, this feature flag is not required as we use optional parameters for our Bevy systems.
16+ # In practice, this feature flag is not required as we use optional arguments for our Bevy systems.
1717 # However, the Github Action's environment does not support winit, which is a transitive dependency of bevy/custom_cursor.
18- # So hiding this behind a feature allows us to run tests with --no-default-features on the CI server and circumvent the issue.
18+ # So hiding this behind a feature allows us to run tests with --no-default-features in that specific context and circumvent the issue.
1919 " custom_cursor"
2020]
2121custom_cursor = [" bevy/custom_cursor" ]
@@ -38,5 +38,6 @@ clap = { version = "4.5.16", features = ["derive"] }
3838rand = " 0.9"
3939
4040[lints .clippy ]
41+ # Bevy systems can have a lot of arguments
4142too_many_arguments = " allow"
4243type_complexity = " allow"
You can’t perform that action at this time.
0 commit comments