mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
fix new clippy warning
Fix ci clippy task
This commit is contained in:
parent
cc19fca630
commit
09df10cdbd
2 changed files with 4 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -24,7 +24,9 @@ jobs:
|
|||
- name: Run tests
|
||||
run: make test
|
||||
- name: Run clippy
|
||||
run: make clippy
|
||||
run: |
|
||||
rustup component add clippy
|
||||
make clippy
|
||||
- name: Build Release
|
||||
run: make build-release
|
||||
- name: Build Win Test Release
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ use io::Write;
|
|||
use log::error;
|
||||
use scopeguard::defer;
|
||||
use scopetime::scope_time;
|
||||
use simplelog::*;
|
||||
use simplelog::{Config, LevelFilter, WriteLogger};
|
||||
use std::{
|
||||
env, fs,
|
||||
fs::File,
|
||||
|
|
|
|||
Loading…
Reference in a new issue