Update to .NET 10 / EF Core 10 #259
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 | |
| on: [push, pull_request] | |
| env: | |
| DISABLE_COVERAGE: 0 | |
| DOTNET_NOLOGO: 1 | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Not specifying a version will attempt to install via global.json | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '10.x' | |
| - name: Build | |
| if: runner.os != 'Windows' | |
| run: | | |
| chmod +x ./build.sh | |
| ./build.sh | |
| env: | |
| CI: true | |
| - name: Build | |
| if: runner.os == 'Windows' | |
| run: ./build.cmd | |
| env: | |
| CI: true |