Skip to content

Commit

Permalink
fix: restor dotnet tools before using them
Browse files Browse the repository at this point in the history
  • Loading branch information
hamed-shirbandi committed Oct 30, 2023
1 parent 93bee49 commit e6a6bdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/6-Build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ internal class Build : NukeBuild
/// </summary>
private Target Lint =>
_ =>
_.DependsOn(Compile)
_.DependsOn(Compile, RestoreDotNetTools)
.Executes(() =>
{
// Only on local we want to apply linting changes to the source code
Expand Down Expand Up @@ -181,7 +181,7 @@ internal class Build : NukeBuild
/// </summary>
private Target RunMutationTests =>
_ =>
_.DependsOn(RunUnitTests, RestoreDotNetTools)
_.DependsOn(RunUnitTests)
.Executes(() =>
{
//It will add dashboard reporter for CI
Expand Down

0 comments on commit e6a6bdf

Please sign in to comment.