Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run womtool on WDL files #24

Merged
merged 12 commits into from
May 29, 2024
47 changes: 47 additions & 0 deletions .github/workflows/womtool.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Womtool

# Enable Buildkit and let compose use it to speed up image building
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1

on:
pull_request:
branches: [ "main" ]
paths-ignore: [ "docs/**" ]

push:
branches: [ "main" ]
paths-ignore: [ "docs/**" ]

concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:

run-womtool:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
wdl-file: [
./gsr_data_report.wdl,
./check_vcf_samples.wdl,
./pheno_qc/pheno_qc.wdl,
./validate_genotype_model.wdl,
./validate_gsr_model.wdl,
./validate_phenotype_model.wdl,
]

name: "Run womtool: ${{ matrix.wdl-file }}"

steps:

- name: Checkout Code Repository
uses: actions/checkout@v4

- name: Run womtool
uses: UW-GAC/womtool-action@main
with:
wdl-file: ${{ matrix.wdl-file }}
Loading