Skip to content

Merge branch 'main' into martin/clippy-fix #195

Merge branch 'main' into martin/clippy-fix

Merge branch 'main' into martin/clippy-fix #195

Workflow file for this run

name: Cargo Build/Test/Clippy
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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