chore(deps): update dependency microsoft.codeanalysis.workspaces.msbuild to v4.11.0 - autoclosed #1503
Workflow file for this run
This file contains 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: .NET Testing | |
on: | |
pull_request: | |
branches: | |
- "**" | |
concurrency: | |
group: testing-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Testing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.x | |
- name: Linting | |
run: dotnet format --verify-no-changes | |
- name: Create Kubernetes Cluster | |
uses: helm/[email protected] | |
- name: Execute Tests | |
run: dotnet test --configuration ${{ runner.debug == '1' && 'Debug' || 'Release' }} |