Skip to content

Merge branch 'release/1.2.6' #168

Merge branch 'release/1.2.6'

Merge branch 'release/1.2.6' #168

Workflow file for this run

name: Validate CWL Files
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
validate_cwls:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
python-version: [3.8.x, 3.9.x]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install cwltool
run: |
python -m pip install toil[cwl]==5.7.1
- uses: actions/checkout@v4
- name: Validate
run: |
pip install cwltool
find . -name '*.cwl' | xargs -n 1 -P 8 cwltool --validate