From 3d49180b0bfb13b80694936f6dd6c25aa4355676 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 2 Jul 2021 20:16:57 +0300 Subject: workflows/test: factor out steps & refactoring --- .github/actions/run-foo/action.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/actions/run-foo/action.yml (limited to '.github/actions/run-foo/action.yml') diff --git a/.github/actions/run-foo/action.yml b/.github/actions/run-foo/action.yml new file mode 100644 index 0000000..0e56b07 --- /dev/null +++ b/.github/actions/run-foo/action.yml @@ -0,0 +1,26 @@ +name: Run foo.exe +description: Run foo.exe and verify its output +runs: + using: composite + steps: + - run: | + $expected = @" + Doing something #1 + Doing something #2 + Doing something #3 + "@ + + $actual = & (Join-Path . foo.exe) + $actual = $actual -join [Environment]::NewLine + + echo @" + Expected output: + $expected + "@ + echo @" + Actual output: + $actual + "@ + + $($actual -eq $expected) -or $(throw "Unexpected output!") + shell: pwsh -- cgit v1.2.3