From 5ba7fecc2c1e6d2a47c7140565b7c06923367c5e Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 5 Jul 2021 10:39:48 +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') diff --git a/.github/actions/run-foo/action.yml b/.github/actions/run-foo/action.yml new file mode 100644 index 0000000..3167545 --- /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) + $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