Adding GPU test WDL #11
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: Cromwell Test Run | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
testrun: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set Up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- | |
name: Pull Cromwell Jarfile | |
run: wget -q https://github.com/broadinstitute/cromwell/releases/download/86/cromwell-86.jar | |
- | |
name: Execute Test Run of WDL Workflows | |
run: | | |
java -jar cromwell-86.jar run helloHostname/helloHostname.wdl | |
java -jar cromwell-86.jar run helloDockerHostname/helloDockerHostname.wdl | |
java -jar cromwell-86.jar run parseBatchFile/parseBatchFile.wdl --inputs parseBatchFile/parseBatchFile-inputs.json | |