Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

[fire-stream-api..] Requests can now have a generic B type #40

[fire-stream-api..] Requests can now have a generic B type

[fire-stream-api..] Requests can now have a generic B type #40

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/[email protected]
- name: Build no features
run: cargo build --no-default-features
- name: Run tests no features
run: cargo test --no-default-features
- name: Build
run: cargo build
- name: Run
run: cargo test
- name: Build all features
run: cargo build --all-features
- name: Run tests with all features
run: cargo test --all-features