fix(mimic-iv): exclude C4A from Charlson malignant_cancer mapping #56
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
| # Lint all shell scripts in the repository with ShellCheck. | |
| # Picks up any *.sh file in the repo excluding .git | |
| name: ShellCheck | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v7 | |
| - name: Run ShellCheck | |
| run: | | |
| find . -type f -name '*.sh' -not -path './.git/*' -print0 \ | |
| | xargs -0 shellcheck |