Skip to content

Commit

Permalink
test multiple py versions ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaynagi committed Apr 17, 2023
1 parent c6c16d5 commit 563e14b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/github-action-anoexpress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ on: [push]

jobs:
run:
strategy:
fail-fast: true
matrix:
python-version: ['3.7', '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: ${{ matrix.python-version }}
- run: python3 -m pip install anoexpress malariagen_data nbformat ipykernel papermill nbconvert
- run: python -m ipykernel install --user --name anoexpress
- run: papermill workflow/notebooks/plot-gene-expression.ipynb ci.ipynb -k anoexpress
Expand Down

0 comments on commit 563e14b

Please sign in to comment.