File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
crates/gh-workflow-tailcall/src Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 4343 with :
4444 toolchain : stable
4545 - name : Install nextest
46- run : cargo cargo install cargo-nextest --locked
46+ run : cargo install cargo-nextest --locked
4747 - name : Cargo Nextest
4848 run : cargo nextest run --all-features --workspace
4949 lint :
Original file line number Diff line number Diff line change @@ -205,7 +205,9 @@ impl StandardWorkflow {
205205 . add_step ( Toolchain :: default ( ) . add_stable ( ) )
206206 . add_step_when (
207207 matches ! ( self . test_runner, TestRunner :: Nextest ) ,
208- Cargo :: new ( "cargo install cargo-nextest --locked" ) . name ( "Install nextest" ) ,
208+ Cargo :: new ( "install" )
209+ . args ( "cargo-nextest --locked" )
210+ . name ( "Install nextest" ) ,
209211 )
210212 . add_step ( match self . test_runner {
211213 TestRunner :: Cargo => Cargo :: new ( "test" )
You can’t perform that action at this time.
0 commit comments