Skip to content

Commit da400ec

Browse files
committed
Update pipeline and dependencies: replace make commands with cargo commands, add async to upstream_response_filter, and upgrade pingora to version 0.7.0
1 parent 969ebed commit da400ec

File tree

5 files changed

+72
-215
lines changed

5 files changed

+72
-215
lines changed

.github/workflows/pipeline.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Format & Lint
3333
run: |
3434
make fmt-check
35-
make lint
35+
cargo clippy --workspace --all-targets --all-features --locked -- -D warnings -W clippy::all
3636
make shellcheck
3737
3838
build:
@@ -80,7 +80,7 @@ jobs:
8080
- name: Install Rust
8181
uses: dtolnay/rust-toolchain@stable
8282
- name: Run unit tests
83-
run: make test
83+
run: cargo test --workspace --locked
8484

8585
e2e_binary:
8686
name: e2e (binary) - ${{ matrix.suite }}

0 commit comments

Comments
 (0)