File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,7 @@ let buildStage =
2020
2121pipeline " Build" {
2222 restoreStage
23- // TODO: can uncomment this after .NET SDK 9.0.101 releases
24- // stage "lint" { run "dotnet fantomas . --check" }
23+ stage " lint" { run " dotnet fantomas . --check" }
2524 stage " build" { run " dotnet build -c Release --no-restore -maxCpuCount" }
2625 stage " test" {
2726 purgeBinLogCache ()
@@ -31,7 +30,9 @@ pipeline "Build" {
3130 run
3231 " dotnet run --project src/FSharp.Analyzers.Cli/FSharp.Analyzers.Cli.fsproj -- --project ./samples/OptionAnalyzer/OptionAnalyzer.fsproj --analyzers-path ./artifacts/bin/OptionAnalyzer/release --verbosity d"
3332 }
34- stage " docs" { run " dotnet fsdocs build --properties Configuration=Release --eval --clean --strict" }
33+ stage " docs" {
34+ run " dotnet fsdocs build --properties Configuration=Release --eval --clean --strict"
35+ }
3536 runIfOnlySpecified false
3637}
3738
You can’t perform that action at this time.
0 commit comments