Migrate to the .NET 10 SDK #83
Workflow file for this run
This file contains hidden or 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 and test | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup .NET for main project build | |
| uses: actions/setup-dotnet@v6 | |
| - name: Install local tools | |
| run: dotnet tool restore | |
| - name: Paket restore | |
| run: dotnet paket restore | |
| - name: Build | |
| run: dotnet fsi build.fsx |