Skip to content

Commit

Permalink
Merge pull request #7 from jnises/filter
Browse files Browse the repository at this point in the history
Add support for ignoring users, limiting the age of commits and limiting the depth of printed trees.
  • Loading branch information
jnises authored Nov 27, 2022
2 parents 4e069e2 + a4b069d commit ec23583
Show file tree
Hide file tree
Showing 4 changed files with 313 additions and 68 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,16 @@ jobs:
components: clippy, rustfmt
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: fmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy -- -D warnings
- name: fmt
run: cargo fmt --all -- --check
- name: Run tests
run: cargo test --verbose
- name: Run application
run: |
cargo run -r -- --help
cargo run -r -- --email [email protected]
cargo run -r -- --show-authors
cargo run -r -- --flat --email [email protected]
cargo run -r -- --max-age 3M --email [email protected]
Loading

0 comments on commit ec23583

Please sign in to comment.