Skip to content

Commit

Permalink
Add gitlab action for wdl validation
Browse files Browse the repository at this point in the history
  • Loading branch information
aclum committed Jul 19, 2024
1 parent 1ac75b3 commit d751797
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/wdl_linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: MiniWDL linter CI

on:
pull_request:
branches: master

jobs:
run-miniwdl:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8' # specify the Python version you need

- name: Install MiniWDL
run: |
python -m pip install --upgrade pip
pip install miniwdl
- name: Run MiniWDL
run: |
# Add the commands to run your MiniWDL workflow
miniwdl check --suppress UnknownRuntimeKey rqcfilter.wdl

0 comments on commit d751797

Please sign in to comment.