Bump FSharp.Compiler.Service and FSharp.Core #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build for Standalone and Hosting | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.0.x' | |
- name: Build FeshHosting.fsproj | |
run: dotnet build FeshHosting.fsproj --configuration Release | |
- name: Build FeshStandalone.fsproj | |
run: dotnet build FeshStandalone.fsproj --configuration Release | |