Skip to content

Commit a5bd78e

Browse files
committed
fix build
1 parent 1a059cf commit a5bd78e

2 files changed

Lines changed: 2 additions & 39 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: rustup component add clippy
2525

2626
- name: Cargo Fetch
27-
run: cargo fetch --frozen --all-features
27+
run: cargo fetch --frozen
2828

2929
- name: Check
3030
run: cargo fmt --all -- --check

.github/workflows/pr-check.yml

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -45,44 +45,7 @@ jobs:
4545
targets: ${{ matrix.target }}
4646

4747
- name: Cargo Fetch
48-
run: cargo fetch --frozen --all-features
48+
run: cargo fetch --frozen
4949

5050
- name: Run Tests
5151
run: cargo test --all-features
52-
53-
54-
clippy:
55-
name: Clippy
56-
runs-on: ubuntu-latest
57-
steps:
58-
- name: Checkout
59-
uses: actions/checkout@v4
60-
61-
- name: Rust Tool Chain setup
62-
uses: dtolnay/rust-toolchain@stable
63-
with:
64-
toolchain: stable
65-
66-
- name: Install clippy
67-
run: rustup component add clippy
68-
69-
- name: Cargo Fetch
70-
run: cargo fetch --frozen --all-features
71-
72-
- name: Run Clippy
73-
run: cargo clippy --all-features -- -D warnings
74-
75-
76-
format-check:
77-
runs-on: ubuntu-latest
78-
steps:
79-
- name: Checkout
80-
uses: actions/checkout@v4
81-
82-
- name: Rust Tool Chain setup
83-
uses: dtolnay/rust-toolchain@stable
84-
with:
85-
toolchain: stable
86-
87-
- name: Check
88-
run: cargo fmt --all -- --check

0 commit comments

Comments
 (0)