Skip to content

Commit 83788af

Browse files
authored
Enable callback for new command (#70)
* Enable callback for new command
1 parent 5e88cf8 commit 83788af

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
matrix:
4444
toolchain:
4545
# Oldest supported nightly
46-
- nightly-2024-03-10
46+
- nightly-2024-09-01
4747
- nightly
4848

4949
continue-on-error: ${{ matrix.toolchain == 'nightly' }}

src/command.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ impl CargoCmd {
363363
Self::Build(cmd) => Some(cmd),
364364
Self::Run(cmd) => Some(cmd),
365365
Self::Test(cmd) => Some(cmd),
366+
Self::New(cmd) => Some(cmd),
366367
_ => None,
367368
}
368369
}

0 commit comments

Comments
 (0)