Skip to content

Commit 7d778df

Browse files
committed
feat: run cargo-shear in CI
1 parent 787cc07 commit 7d778df

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/run-tests-on-push-to-main.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,18 @@ jobs:
2020
- name: Checkout code
2121
uses: actions/checkout@v4
2222

23+
- name: Install Shear
24+
run: cargo install cargo-shear
25+
2326
- name: Run Format
2427
run: cargo fmt --all -- --check
2528

2629
- name: Run Clippy
2730
run: cargo clippy --all-targets --all-features -- -D warnings
2831

32+
- name: Run Shear
33+
run: cargo shear
34+
2935
- name: Run Build
3036
run: cargo build --verbose
3137

0 commit comments

Comments
 (0)