Merge pull request #676 from camunda-community-hub/dependabot/nuget/G… #129
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 Core CI | |
on: | |
push: | |
branches: main | |
workflow_dispatch: { } | |
jobs: | |
unit-test: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 8.x | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Test | |
run: dotnet test Client.UnitTests | |
integration-test: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 8.x | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Test | |
run: dotnet test Client.IntegrationTests |