Skip to content

Commit

Permalink
chore(ci): bump dailydevops/pipelines from 0.12.11 to 0.12.12 (#67)
Browse files Browse the repository at this point in the history
* chore(ci): bump dailydevops/pipelines from 0.12.11 to 0.12.12

Bumps [dailydevops/pipelines](https://github.com/dailydevops/pipelines) from 0.12.11 to 0.12.12.
- [Release notes](https://github.com/dailydevops/pipelines/releases)
- [Commits](dailydevops/pipelines@0.12.11...0.12.12)

---
updated-dependencies:
- dependency-name: dailydevops/pipelines
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* style: updated formatting

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Martin Stühmer <[email protected]>
  • Loading branch information
dependabot[bot] and samtrion authored Aug 26, 2024
1 parent eeabacf commit c513ab9
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
jobs:
all:
name: Build & Tests
uses: dailydevops/pipelines/.github/workflows/[email protected].11
uses: dailydevops/pipelines/.github/workflows/[email protected].12
with:
enableSonarQube: true
dotnet-logging: ${{ inputs.dotnet-logging }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public void GetFormular_EverythingFine_Expected()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -37,7 +37,7 @@ public void GetFormular_InvalidForm_ThrowsInvalidOperationException()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -55,7 +55,7 @@ public async Task GetFormularAsync_EverythingFine_Expected()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -74,7 +74,7 @@ public async Task GetFormularAsync_InvalidForm_ThrowsInvalidOperationException()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -92,7 +92,7 @@ public void GetScopedForm_EverythingFine_Expected()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -111,7 +111,7 @@ public void GetScopedForm_InvalidForm_ThrowsInvalidOperationException()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -129,7 +129,7 @@ public async Task GetScopedFormAsync_EverythingFine_Expected()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -148,7 +148,7 @@ public async Task GetScopedFormAsync_InvalidForm_ThrowsInvalidOperationException
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -166,7 +166,7 @@ public void GetScopedForm_WithScope_EverythingFine_Expected()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);
using var scope = serviceProvider.CreateScope();
Expand All @@ -186,7 +186,7 @@ public void GetScopedForm_WithScope_InvalidForm_ThrowsInvalidOperationException(
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);
using var scope = serviceProvider.CreateScope();
Expand All @@ -205,7 +205,7 @@ public async Task GetScopedFormAsync_WithScope_EverythingFine_Expected()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);
using var scope = serviceProvider.CreateScope();
Expand All @@ -225,7 +225,7 @@ public async Task GetScopedFormAsync_WithScope_InvalidForm_ThrowsInvalidOperatio
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);
using var scope = serviceProvider.CreateScope();
Expand All @@ -246,7 +246,7 @@ public void GetMainFormular_EverythingFine_Expected()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -267,7 +267,7 @@ public void GetMainFormular_InvalidForm_ThrowsInvalidOperationException()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -285,7 +285,7 @@ public async Task GetMainFormularAsync_EverythingFine_Expected()
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand All @@ -306,7 +306,7 @@ public async Task GetMainFormularAsync_InvalidForm_ThrowsInvalidOperationExcepti
var serviceProvider = services.BuildServiceProvider();
var synchronizationContext = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};
using var formularProvider = new FormularProvider(serviceProvider, synchronizationContext);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public void AddWindowsFormsLifetime_ConfigurationNull_Expected(
{
options.EnableConsoleShutdown = true;
}
}
},
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void Invoke_Action_Expected()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act / Assert
Expand Down Expand Up @@ -74,7 +74,7 @@ public void Invoke_Func_Expected()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act
Expand Down Expand Up @@ -118,7 +118,7 @@ public void Invoke_FuncWithInput_Expected()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act
Expand Down Expand Up @@ -161,7 +161,7 @@ public async Task InvokeAsync_ActionThrows_ExpectedException()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act
Expand All @@ -182,7 +182,7 @@ public async Task InvokeAsync_Action_CancellationTokenCanceled_ThrowsTaskCancele
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = new WindowsFormsSynchronizationContext()
Context = new WindowsFormsSynchronizationContext(),
};

// Act
Expand All @@ -199,7 +199,7 @@ public async Task InvokeAsync_Action_Expected()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act
Expand Down Expand Up @@ -243,7 +243,7 @@ public async Task InvokeAsync_FuncThrows_ExpectedException()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act
Expand All @@ -264,7 +264,7 @@ public async Task InvokeAsync_Func_CancellationTokenCanceled_ThrowsTaskCanceledE
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = new WindowsFormsSynchronizationContext()
Context = new WindowsFormsSynchronizationContext(),
};

// Act
Expand All @@ -281,7 +281,7 @@ public async Task InvokeAsync_Func_Expected()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act
Expand Down Expand Up @@ -325,7 +325,7 @@ public async Task InvokeAsync_FuncWithInputThrows_ExpectedException()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act
Expand All @@ -349,7 +349,7 @@ public async Task InvokeAsync_FuncWithInput_CancellationTokenCanceled_ThrowsTask
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = new WindowsFormsSynchronizationContext()
Context = new WindowsFormsSynchronizationContext(),
};

// Act
Expand All @@ -371,7 +371,7 @@ public async Task InvokeAsync_FuncWithInput_Expected()
WindowsFormsSynchronizationContext.AutoInstall = false;
var provider = new WindowsFormsSynchronizationContextProvider
{
Context = SynchronizationContext.Current!
Context = SynchronizationContext.Current!,
};

// Act
Expand Down

0 comments on commit c513ab9

Please sign in to comment.