Merge branch 'release/1.2.5' #164
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: 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 |