Chore(deps): Bump Microsoft.CodeAnalysis.Common and Microsoft.CodeAnalysis.CSharp #1
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: Dotnet Testing | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| branches: [ core ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: | | |
| 9.x | |
| 10.x | |
| - name: Restore dependencies | |
| run: dotnet restore CodeOfChaos.Extensions.slnx | |
| - name: Build | |
| run: dotnet build CodeOfChaos.Extensions.slnx --configuration Release --no-restore -p:GeneratePackageOnBuild=false -p:IsPackable=false | |
| - name: Run tests | |
| run: dotnet test --solution CodeOfChaos.Extensions.slnx --configuration Release --no-restore --no-build |