From c3ac2d2fc9a865c33fd7caf62e9ab32872b59264 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Tue, 28 Jun 2022 10:41:32 +0200 Subject: [PATCH] wip --- .drone.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 4465d46..1a870db 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,10 +22,9 @@ steps: commands: - | pwsh -NonInteractive -c "& { - $ErrorActionPreference = 'Stop'; Import-Module './tools/DroneIO.psm1'; Invoke-InstallDependencies; - Invoke-Linter + Invoke-Linter -ErrorAction 'Stop' }" - name: UnitTests @@ -33,10 +32,9 @@ steps: commands: - | pwsh -NonInteractive -c "& { - $ErrorActionPreference = 'Stop'; Import-Module './tools/DroneIO.psm1'; Invoke-InstallDependencies; - Invoke-UnitTest -Verbosity 'Detailed' + Invoke-UnitTest -Verbosity 'Detailed' -ErrorAction 'Stop' }" - name: coverage