Skip to content

Commit 8417fb0

Browse files
committed
Fix Pingora gateway CI sibling checkouts
1 parent f7fd285 commit 8417fb0

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ jobs:
2323
with:
2424
repository: rustscript-lang/rustscript
2525
path: rustscript
26+
- uses: actions/checkout@v4
27+
with:
28+
repository: rustscript-lang/pd-edge
29+
path: pd-edge
2630
- uses: dtolnay/rust-toolchain@stable
2731
with:
2832
components: rustfmt, clippy
@@ -31,10 +35,12 @@ jobs:
3135
run: cargo fmt --all -- --check
3236
- name: Clippy
3337
working-directory: rustscript-pingora-gateway-policy
34-
run: cargo clippy --all-targets
38+
run: cargo clippy --all-targets -- -D warnings
3539
- name: Tests
3640
working-directory: rustscript-pingora-gateway-policy
3741
run: cargo test --tests --jobs 4
3842
- name: Example run
3943
working-directory: rustscript-pingora-gateway-policy
40-
run: cargo run --example decision
44+
run: |
45+
cargo run --example decision
46+
cargo run --example protocols

0 commit comments

Comments
 (0)