Skip to content

Commit

Permalink
Merge pull request #41 from aofarrel/github-workflow
Browse files Browse the repository at this point in the history
Add GitHub workflow
  • Loading branch information
aofarrel authored Oct 31, 2023
2 parents 2caadbc + 17ccd29 commit 86b174a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/miniwdl_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: miniwdl check

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install miniwdl
- name: Analysing the code with miniwdl
run: |
miniwdl check $(git ls-files '*.wdl')

0 comments on commit 86b174a

Please sign in to comment.