he read builtin in macOS's bash doesn't support decimal timeout value… #503
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: CI | |
| # Controls when the action will run. Triggers the workflow on push or pull request | |
| # events but only for the master branch | |
| # https://github.com/azohra/shell-linter and https://github.com/marketplace/actions/shell-linter | |
| on: | |
| push: | |
| pull_request: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Run Shellcheck | |
| uses: azohra/shell-linter@latest | |
| with: | |
| args: --external-sources | |
| path: "shelldio" |