We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b4440 commit 7891c63Copy full SHA for 7891c63
1 file changed
.github/workflows/main.yml
@@ -22,7 +22,7 @@ jobs:
22
- name: Clone repo
23
uses: actions/checkout@v6
24
25
- - name: Check typos
+ - name: Check for typos
26
uses: crate-ci/typos@v1.44.0
27
28
format:
@@ -38,7 +38,7 @@ jobs:
38
- name: Install Taplo
39
run: cargo install --locked taplo-cli
40
41
- - name: Format
+ - name: Check formatting
42
run: |
43
cargo fmt --all --check
44
taplo fmt --check
@@ -58,10 +58,10 @@ jobs:
58
- name: Cache crates
59
uses: Swatinem/rust-cache@v2
60
61
- - name: Clippy
+ - name: Run Clippy
62
run: cargo clippy --workspace --all-features --tests --benches --examples -- -D warnings
63
64
- - name: Rustdoc
+ - name: Check docs
65
66
cargo rustdoc --all-features -- -D warnings
67
cargo rustdoc -p bevy_replicon_example_backend -- -D warnings
0 commit comments