Skip to content

Commit

Permalink
PR-check - add check for -h option
Browse files Browse the repository at this point in the history
in edge-testnet, it's now trying to call a function that does not'
exist.
  • Loading branch information
JanneKiiskila committed May 29, 2024
1 parent 425bd54 commit ddb26d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pr-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ jobs:
run: fw-tools/edge-testnet
- name: Run edge-testnet as fake snap
run: SNAP=snap fw-tools/edge-testnet
- name: Check -h works OK.
run: |
if ! fw-tools/edge-testnet -h; then
echo "Failed to run edge-testnet -h"
exit 1
fi
versions-check:
runs-on: [ "self-hosted", "client" ]
Expand Down

0 comments on commit ddb26d7

Please sign in to comment.