bh1730fvc 0.2.0

A rust no-std driver for the BH1730FVC ambient light sensor.
Documentation
name: Rust

on:
  push:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Build (blocking - default)
      run: cargo build --verbose
    - name: Build (async)
      run: cargo build --features async --verbose
    - name: Run tests
      run: cargo test --lib --verbose --features unittesting