Skip to content

old scipy workflow

old scipy workflow #6

Workflow file for this run

name: CI (old scipy)
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build and test with Docker using an older version of scipy
run: |
docker build --tag scispacy .
docker run --rm scispacy bash -c "pip install 'scipy<1.11' && pytest -vv tests/"