Skip to content

feat(tui): add Projects tab with per-project token breakdown #292

feat(tui): add Projects tab with per-project token breakdown

feat(tui): add Projects tab with per-project token breakdown #292

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
paths-ignore:
- 'CHANGELOG.md'
- '.release-please-manifest.json'
- 'Cargo.toml' # release-please updates version here
pull_request:
branches: [main, develop]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable]
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose