change logo #339
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: | |
- '**' # This will trigger on all branches | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Protobuf Compiler | |
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
- name: Run broker tests | |
run: cargo test --bin danube-broker | |
- name: Run library tests | |
run: | | |
cargo test --lib -p danube-reliable-dispatch | |
cargo test --lib -p danube-client | |
cargo test --lib -p danube-metadata-store |