Skip to content

Commit

Permalink
update python-package.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
abearab authored Dec 30, 2023
1 parent d5b2252 commit 3b44ae5
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9"] # ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand All @@ -35,6 +35,15 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: "Install miniconda"
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
auto-update-conda: true
mamba-version: "*"
python-version: ${{ matrix.python-version }}
channels: conda-forge,bioconda
environment-file: environment.yml
- name: Test with pytest
run: |
pytest

0 comments on commit 3b44ae5

Please sign in to comment.