Skip to content

Commit

Permalink
fixed project name and fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Arteiii committed Apr 17, 2024
1 parent 21d20a1 commit 3b130f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
name: Test
env:
PROJECT_NAME_UNDERSCORE: nexus
PROJECT_NAME_UNDERSCORE: zenity
CARGO_INCREMENTAL: 0
RUSTFLAGS: -Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort
RUSTDOCFLAGS: -Cpanic=abort
Expand Down Expand Up @@ -45,6 +45,7 @@ jobs:
cargo test $CARGO_OPTIONS -- -Z unstable-options --format json | cargo2junit > results.xml;
zip -0 ccov.zip `find . \( -name "$PROJECT_NAME_UNDERSCORE*.gc*" \) -print`;
grcov ccov.zip -s . -t lcov --llvm --ignore-not-existing --ignore "/*" --ignore "tests/*" --exclude "examples/*" -o lcov.info;
- name: Upload test results
uses: EnricoMi/publish-unit-test-result-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion src/menu/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ use crossterm::{
cursor::MoveTo,
event::{Event, KeyCode, KeyEvent},
execute,
terminal::{Clear, ClearType, disable_raw_mode, enable_raw_mode},
terminal::{disable_raw_mode, enable_raw_mode, Clear, ClearType},
};
use regex::Regex;

Expand Down

0 comments on commit 3b130f5

Please sign in to comment.