Skip to content

feat: StreamingManagerにポーリングモードを追加 #21

feat: StreamingManagerにポーリングモードを追加

feat: StreamingManagerにポーリングモードを追加 #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Cache cargo
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') }}
- name: Build
run: cargo build --no-default-features
- name: Clippy
run: cargo clippy --no-default-features -- -D warnings
- name: Test
run: cargo test --no-default-features