glimta 0.1.0

A local-first Rust client for the classic IKEA TRADFRI gateway
Documentation
name: CI

on:
  push:
  pull_request:

permissions:
  contents: read

jobs:
  rust:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v7
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: rustfmt, clippy
      - name: Format
        run: cargo fmt -- --check
      - name: Test core only
        run: cargo test --no-default-features --all-targets
      - name: Test all features
        run: cargo test --all-features --all-targets
      - name: Clippy
        run: cargo clippy --all-features --all-targets -- -D warnings