at24cx 0.1.3

A rust-embedded async driver for the Atmel AT24Cx eeprom storage family
Documentation
name: Rust CI

on:
  pull_request:
    branches: [ main ]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Install Rust toolchain
      uses: dtolnay/rust-toolchain@stable
    - name: Formatting & Lints
      run: cargo fmt -- --check && cargo clippy -- -D warnings
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose