feat: window blame — per-project burn attribution for the current 5h … #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| windows: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rust components | |
| run: rustup component add rustfmt --toolchain 1.96.0 | |
| - name: Check formatting | |
| run: | | |
| cargo fmt --manifest-path crates\usage-core\Cargo.toml -- --check | |
| cargo fmt --manifest-path crates\usage-widget\Cargo.toml -- --check | |
| - name: Test core | |
| run: | | |
| cargo test --manifest-path crates\usage-core\Cargo.toml | |
| cargo test --manifest-path crates\usage-core\Cargo.toml --features net | |
| - name: Check widget | |
| run: cargo check --locked --manifest-path crates\usage-widget\Cargo.toml |