fix: crate build issues with stream
feature
#1533
Workflow file for this run
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: Rust | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
channel: [stable, beta, nightly] | |
os: [ubuntu, macos, windows] | |
steps: | |
- uses: easimon/maximize-build-disk-space@v10 | |
with: | |
root-reserve-mb: 512 | |
swap-size-mb: 1024 | |
remove-android: true | |
remove-haskell: true | |
remove-codeql: true | |
- uses: actions/checkout@v2 | |
- run: sudo apt install llvm | |
if: matrix.os == 'ubuntu' | |
- run: rustup default ${{ matrix.channel }} | |
- run: cargo build --verbose --all-targets | |
- run: cargo test | |
- run: cargo build --verbose --all-targets -F stream | |
- run: cargo test -F stream | |
wasm-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: rustup default stable | |
- run: rustup target add wasm32-unknown-unknown | |
- run: cargo build --verbose --target=wasm32-unknown-unknown --no-default-features | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: cargo fmt --all -- --check | |
- run: cargo clippy --tests --examples |