Skip to content

Commit

Permalink
fix dep installation on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Jan 18, 2024
1 parent 61aa086 commit 320850a
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/nblast-py.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,24 @@ defaults:
working-directory: nblast-py

jobs:

lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.x'
- run: pip install $(grep -E '^(black|flake8|mypy|isort)' requirements.txt)
python-version: "3.x"
- run: pip install $(grep -E '^(ruff|mypy)' requirements.txt)
- run: make lint

test:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version:
- "3.9"
- "3.10"
- "3.11"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -71,7 +73,7 @@ jobs:
toolchain: stable
- uses: actions/setup-python@v3
with:
python-version: '3.10'
python-version: "3.10"
- uses: PyO3/maturin-action@v1
with:
manylinux: auto
Expand Down

0 comments on commit 320850a

Please sign in to comment.