Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: camunda-community-hub/zeebe-client-csharp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4a296ef2401d68a55431f3f76823e919cfc09301
Choose a base ref
..
head repository: camunda-community-hub/zeebe-client-csharp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d44b524f4869fb13921bf031ffdd6838c2888fe9
Choose a head ref
Showing with 17 additions and 4 deletions.
  1. +17 −4 .github/workflows/pull-request-ci.yaml
21 changes: 17 additions & 4 deletions .github/workflows/pull-request-ci.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Pull request CI
on: [ pull_request ]
jobs:
build:
name: Build and test PR
unit-test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -13,11 +13,24 @@ jobs:
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet 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/setup-dotnet@v3.2.0
with:
dotnet-version: 7.x
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test Client.IntegrationTests
auto-merge:
name: Auto-merge dependabot PRs
runs-on: ubuntu-latest
needs: [ build ]
needs: [ unit-test, integration-test ]
if: github.repository == 'camunda-community-hub/zeebe-client-csharp' && github.actor == 'dependabot[bot]'
permissions:
checks: read