Merge pull request #844 from camunda-community-hub/renovate/actions-s… #265
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: .NET Core CI | |
| on: | |
| push: | |
| branches: main | |
| workflow_dispatch: { } | |
| jobs: | |
| unit-test: | |
| name: Run unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5.1.0 | |
| 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@v6 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5.1.0 | |
| with: | |
| dotnet-version: 8.x | |
| - name: Build | |
| run: dotnet build --configuration Release | |
| - name: Test | |
| run: dotnet test Client.IntegrationTests |