Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.100
dotnet-version: |
7.0.100
7.0.202
- name: Restore tools
run: dotnet tool restore
- name: Restore projects
Expand All @@ -37,8 +39,8 @@ jobs:
repository: dotnet/fsharp
path: ${{ env.FSHARP_DIR }}
ref: main
- name: Build fsharp main (turn of CI build status)
run: eng\CIBuild.cmd -noVisualStudio
- name: Build FSharp.Core in fsharp main
run: dotnet build .\src\FSharp.Core\ /p:BUILDING_USING_DOTNET=true
working-directory: ${{ env.FSHARP_DIR }}
- name: Checkout FSharp.Formatting main
uses: actions/checkout@v3
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.100
dotnet-version: |
7.0.100
7.0.202
- name: Restore tools
run: dotnet tool restore
- name: Restore projects
Expand All @@ -32,8 +34,8 @@ jobs:
repository: dotnet/fsharp
path: ${{ env.FSHARP_DIR }}
ref: main
- name: Build fsharp main (turn of CI build status)
run: eng\CIBuild.cmd -noVisualStudio
- name: Build FSharp.Core in fsharp main
run: dotnet build .\src\FSharp.Core\ /p:BUILDING_USING_DOTNET=true
working-directory: ${{ env.FSHARP_DIR }}
- name: Checkout FSharp.Formatting main
uses: actions/checkout@v3
Expand Down