chore(deps): update dotnet monorepo #1585
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/kind-action@v1.10.0 | |
- name: Execute Tests | |
run: dotnet test --configuration ${{ runner.debug == '1' && 'Debug' || 'Release' }} |