File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ let buildStage =
2121pipeline " Build" {
2222 restoreStage
2323 // TODO: can uncomment this after .NET SDK 9.0.101 releases
24- // stage "lint" { run "dotnet fantomas . --check" }
24+ stage " lint" { run " dotnet fantomas . --check" }
2525 stage " build" { run " dotnet build -c Release --no-restore -maxCpuCount" }
2626 stage " test" {
2727 purgeBinLogCache ()
@@ -31,7 +31,9 @@ pipeline "Build" {
3131 run
3232 " dotnet run --project src/FSharp.Analyzers.Cli/FSharp.Analyzers.Cli.fsproj -- --project ./samples/OptionAnalyzer/OptionAnalyzer.fsproj --analyzers-path ./artifacts/bin/OptionAnalyzer/release --verbosity d"
3333 }
34- stage " docs" { run " dotnet fsdocs build --properties Configuration=Release --eval --clean --strict" }
34+ stage " docs" {
35+ run " dotnet fsdocs build --properties Configuration=Release --eval --clean --strict"
36+ }
3537 runIfOnlySpecified false
3638}
3739
You can’t perform that action at this time.
0 commit comments