Skip to content

bus: Add a doc example for i2c::RefCellDevice #779

bus: Add a doc example for i2c::RefCellDevice

bus: Add a doc example for i2c::RefCellDevice #779

Workflow file for this run

on:
push:
branches: [ staging, trying, master ]
pull_request:
name: Continuous integration
env:
RUSTFLAGS: '--deny warnings'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- 1.59.0 # MSRV
- nightly
target:
- x86_64-unknown-linux-gnu
- thumbv6m-none-eabi
- thumbv7m-none-eabi
include:
- target: x86_64-unknown-linux-gnu
features: embedded-hal-bus/std
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- run: sed -i '/nightly-only/d' Cargo.toml
if: matrix.rust != 'nightly'
- run: cargo check --target=${{ matrix.target }} --features=${{ matrix.features }}
- run: cargo test --target=${{ matrix.target }} --features=${{ matrix.features }}
if: contains(matrix.target, 'linux')