aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/actions/run-foo/action.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-07-05 10:39:48 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-07-05 10:52:14 +0300
commit5ba7fecc2c1e6d2a47c7140565b7c06923367c5e (patch)
treef8fe6631439089dfc6a7e1a2ad14ce931f698d02 /.github/actions/run-foo/action.yml
parentapt-get best scripting practices (diff)
downloadsetup-mingw-5ba7fecc2c1e6d2a47c7140565b7c06923367c5e.tar.gz
setup-mingw-5ba7fecc2c1e6d2a47c7140565b7c06923367c5e.zip
workflows/test: factor out steps & refactoring
Diffstat (limited to '.github/actions/run-foo/action.yml')
-rw-r--r--.github/actions/run-foo/action.yml26
1 files changed, 26 insertions, 0 deletions
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