Skip to content

Add support for defining schemas to be used by the sinks #101

Add support for defining schemas to be used by the sinks

Add support for defining schemas to be used by the sinks #101

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Prepare
run: sudo apt-get install -qy libsasl2-dev
#- uses: actions-rs/clippy-check@v1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# args: --all-features
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run tests with simd
run: cargo test --verbose --features simd