Issue / .NET 10 / Research #281
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: Projects - Regular Checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - 'epic/**' | |
| jobs: | |
| build: | |
| name: Build & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 9 | |
| - name: Restore Dependencies | |
| run: dotnet restore | |
| - name: Format Solution | |
| run: dotnet format --no-restore --verify-no-changes --verbosity diagnostic | |
| - name: Build Solution | |
| run: dotnet build --no-restore -c Release | |
| - name: Run Tests | |
| run: dotnet test |