Add evidence
command for monitoring and reporting misbehavior evidence to counterparty clients
#1582
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ShellCheck Scripts | |
on: | |
pull_request: | |
paths: | |
- scripts/** | |
push: | |
branches: master | |
paths: | |
- scripts/** | |
# Cancel previous runs of this workflow when a new commit is added to the PR, branch or tag | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
scandir: './scripts' | |
additional_files: 'scripts/dev-env scripts/one-chain scripts/init-hermes' |