This commit is contained in:
OCram85 2022-06-29 14:00:30 +02:00
parent 5353e473e2
commit be156ab716
1 changed files with 5 additions and 2 deletions

View File

@ -74,7 +74,7 @@ steps:
- name: LintTests
image: mcr.microsoft.com/powershell:lts-7.2-ubuntu-focal
failure: ignore
#failure: ignore
commands:
- |
pwsh -NonInteractive -c "& {
@ -85,7 +85,7 @@ steps:
- name: UnitTests
image: mcr.microsoft.com/powershell:lts-7.2-ubuntu-focal
failure: ignore
#failure: ignore
commands:
- |
pwsh -NonInteractive -c "& {
@ -102,3 +102,6 @@ steps:
Import-Module './tools/DroneIO.psm1';
Invoke-ShowEnv -Verbose
}"
depends_on:
- LintTests
- UnitTests