Update preparation_config_yaml_file.rst to include --list_sub_file ex… #12
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: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up system | |
shell: bash | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install shellcheck | |
- uses: actions/checkout@v4 | |
- name: Run shellcheck | |
run: | | |
shellcheck \ | |
tests/e2e-slurm/container/babs-user-script.sh \ | |
tests/e2e-slurm/container/ensure-env.sh \ | |
tests/e2e-slurm/container/walkthrough-tests.sh \ | |
tests/e2e-slurm/install-babs.sh \ | |
tests/e2e-slurm/main.sh |