Skip to content

Commit 0bde287

Browse files
authored
Merge pull request #24 from ewohltman/tui
Implement TUI
2 parents c6b1f27 + 19a18bf commit 0bde287

14 files changed

Lines changed: 707 additions & 238 deletions

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text eol=lf
2+
*.gif binary

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: dtolnay/rust-toolchain@stable
1515
- name: Run fmt
16-
run: cargo fmt --check
16+
run: make fmt
1717
- name: Run clippy
18-
run: cargo clippy
18+
run: make clippy
1919
- name: Run tests
20-
run: cargo test
20+
run: make test
2121
- name: Run benchmarks
22-
run: cargo bench
22+
run: make bench
2323
- name: Build binary
24-
run: cargo build --release
24+
run: make build

0 commit comments

Comments
 (0)