shared-bus 0.2.2

Abstraction for sharing a bus between multiple devices.
Documentation
name: Continuous Integration

on:
  push:
    branches:
      - main
      - wip
  pull_request:

jobs:
  ci:
    name: "Build & Test"
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
      - name: Install Rust
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: stable
          override: true
      - name: Build shared-bus with all features enabled
        uses: actions-rs/cargo@v1
        with:
          command: build
          args: --all-features
      - name: Test shared-bus with all features enabled
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --all-features