-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 1.11 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Cargo Build/Test/Clippy
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: cargo build --release
- run: cargo test --release
- run: cargo clippy -- -Dwarnings
- run: cargo build --release && cargo test --release -- --nocapture
working-directory: ./examples/http-multi-server-channels
- run: cargo build --release && cargo test --release -- --nocapture
working-directory: ./examples/http-single-server-channels
- run: cargo build --release && cargo test --release -- --nocapture
working-directory: ./examples/iroh-p2p-channels
- run: docker compose -f docker-compose.yml up -d && cargo build --release && cargo test --release -- --nocapture
working-directory: ./examples/sql-integration