Merge branch 'main' of github.com:SantanderMetGroup/c3s-cds into copi… #35
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: Run All Requests Scripts | |
| on: | |
| push | |
| #schedule: | |
| # - cron: '0 0 */3 * *' | |
| #workflow_dispatch | |
| jobs: | |
| run-scripts: | |
| runs-on: self-hosted | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Make launcher executable | |
| run: chmod +x scripts/launch_all_requests_scripts.sh | |
| - name: Run launcher with SLURM | |
| shell: bash -l {0} | |
| run: | | |
| mamba activate c3s-atlas | |
| bash scripts/launch_all_requests_scripts.sh |