claco 2.0.0

a CLI tool for boosting Claude Code productive.
Documentation
name: Rust CI
on:
  pull_request:
    branches:
      - main
    paths:
      - ".github/**"
      - "src/**"
      - "Cargo.*"
  push:
    branches:
      - main

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy,rustfmt
      - name: rustfmt check
        run: cargo fmt --all -- --check
      - name: clippy
        run: cargo clippy --all-targets --all-features -- -D warnings
      - name: cargo test
        id: test
        continue-on-error: true
        run: cargo test --all-features
        env:
          RUST_BACKTRACE: 1