This repository was archived by the owner on Apr 8, 2024. It is now read-only.
File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
use gh_actions_gen:: actions:: cargo_cache;
2
2
use gh_actions_gen:: actions:: cargo_doc;
3
- use gh_actions_gen:: actions:: cargo_test;
4
3
use gh_actions_gen:: actions:: checkout_sources;
5
4
use gh_actions_gen:: actions:: rust_install_toolchain;
6
5
use gh_actions_gen:: actions:: RustToolchain ;
7
6
use gh_actions_gen:: ghwf:: Env ;
8
7
use gh_actions_gen:: ghwf:: Job ;
9
8
use gh_actions_gen:: ghwf:: Step ;
10
- use gh_actions_gen:: rustfmt:: rustfmt_check_job;
11
9
use gh_actions_gen:: super_linter:: super_linter_job;
12
10
13
- fn steps ( os : Os , channel : RustToolchain ) -> Vec < Step > {
11
+ fn steps ( _os : Os , channel : RustToolchain ) -> Vec < Step > {
14
12
let mut steps = Vec :: new ( ) ;
15
13
steps. push ( checkout_sources ( ) ) ;
16
14
steps. push ( rust_install_toolchain ( channel) ) ;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ fn server_is_not_running() {
26
26
)
27
27
. join_metadata_result ( ) ,
28
28
) ;
29
- assert ! ( result. is_err( ) , result) ;
29
+ assert ! ( result. is_err( ) , "{:?}" , result) ;
30
30
}
31
31
}
32
32
@@ -49,6 +49,6 @@ fn server_is_not_running_unix() {
49
49
)
50
50
. join_metadata_result ( ) ,
51
51
) ;
52
- assert ! ( result. is_err( ) , result) ;
52
+ assert ! ( result. is_err( ) , "{:?}" , result) ;
53
53
}
54
54
}
You can’t perform that action at this time.
0 commit comments