Skip to content

Commit ad9f8b6

Browse files
committed
fix CI formatter check
1 parent f6d5511 commit ad9f8b6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
run: cargo fmt --all -- --check
4242

4343
- name: Run clippy
44-
run: cargo clippy --all-targets --all-features -- -D warnings
44+
run: cargo clippy --workspace --lib --bins --tests -- -D warnings
4545

4646
- name: Run tests
47-
run: cargo test --all --verbose
48-
47+
run: cargo test --workspace --lib --bins --verbose
48+
4949
- name: Run benchmarks (dry run)
50-
run: cargo bench --all --no-run
50+
run: cargo bench --workspace --lib --bins --no-run
5151

5252
build:
5353
name: Build Release
@@ -71,7 +71,7 @@ jobs:
7171
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
7272

7373
- name: Build release
74-
run: cargo build --release --all
74+
run: cargo build --release --workspace --lib --bins
7575

7676
- name: Upload CLI binary
7777
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)