Skip to content

Chore(deps): Bump Microsoft.CodeAnalysis.Common and Microsoft.CodeAnalysis.CSharp #1

Chore(deps): Bump Microsoft.CodeAnalysis.Common and Microsoft.CodeAnalysis.CSharp

Chore(deps): Bump Microsoft.CodeAnalysis.Common and Microsoft.CodeAnalysis.CSharp #1


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