Skip to content

Commit

Permalink
Tmate
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed Sep 23, 2024
1 parent 9ae10bd commit 96ae7eb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/run-help.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,13 @@ jobs:
with:
workflow: build.yml
name: mingw${{ matrix.arch }}
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- name: Display help
run: >
$result = & lmms-*.exe "--help" |
$exe = Get-ChildItem -Path . -Filter "lmms-*.exe" | Select-Object -First 1;
if ($null -eq $exe) { exit 1 };
$result = & $exe.FullName "--help" |
Select-String "Usage: lmms";
if($result.Matches.Count -eq 0) { exit 1 }
help-msvc:
Expand All @@ -107,6 +111,8 @@ jobs:
with:
workflow: build.yml
name: msvc-${{ matrix.arch }}
- name: Setup tmate session

Check failure on line 114 in .github/workflows/run-help.yml

View workflow job for this annotation

GitHub Actions / yamllint

114:1 syntax error: found character '\t' that cannot start any token (syntax)
uses: mxschmitt/action-tmate@v3
- name: Display help
run: >
$exe = Get-ChildItem -Path . -Filter "lmms-*.exe" | Select-Object -First 1;
Expand Down

0 comments on commit 96ae7eb

Please sign in to comment.