Skip to content

Commit

Permalink
ci workflow: add check for ga2cwl
Browse files Browse the repository at this point in the history
  • Loading branch information
simleo committed Dec 20, 2024
1 parent 163a2b5 commit 6dc5e63
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e .
Expand All @@ -40,3 +40,19 @@ jobs:
- name: Test
run: |
pytest -v test
check-ga2cwl:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e .[ga2cwl]
pip install pytest
- name: Test
run: |
pytest -v test

0 comments on commit 6dc5e63

Please sign in to comment.