Switching import URL's back to the main branch #561
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: Module Test Run | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| module_name: | |
| description: 'Specific module to test (leave empty to test all modules)' | |
| required: false | |
| type: string | |
| default: '' | |
| schedule: | |
| # Run monthly on the 1st at midnight UTC | |
| - cron: '0 0 2 * *' | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| paths: | |
| - 'modules/**/*.wdl' | |
| - 'modules/**/*.json' | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-modules: | |
| uses: ./.github/workflows/testrun-reusable.yml | |
| with: | |
| item_type: modules | |
| item_name: ${{ github.event.inputs.module_name || '' }} |