Skip to content

Fix i2c write

Fix i2c write #109

Workflow file for this run

on: [push, pull_request]
name: Continuous Integration
jobs:
rust_check:
name: Rust check
runs-on: ubuntu-latest
strategy:
matrix:
# Run checks on stable and nightly Rust
rust: [stable, nightly]
include:
# Run check with MSRV as well
- rust: 1.60.0
steps:
- uses: actions/checkout@v2
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
target: riscv32imac-unknown-none-elf
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check