Improved auto-retry logic so that full abort only happens when the workers exit trap did not run #261
Workflow file for this run
This file contains hidden or 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: sh-format | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the "main" branch | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| sh-checker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run the sh-checker | |
| uses: luizm/action-sh-checker@master | |
| env: | |
| SHELLCHECK_OPTS: -e SC1004 # exclude some shellcheck warnings. | |
| SHFMT_OPTS: -s -ln bash -i 4 -ci # arguments to shfmt. | |
| with: | |
| sh_checker_checkbashisms_enable: false | |
| sh_checker_exclude: OLD LEGACY ring_loadables/OLD |