Skip to content

Commit

Permalink
old scipy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dakinggg committed Sep 15, 2024
1 parent 0719a93 commit 7cbf954
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/old_scipy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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 pip install 'scipy<1.11' \
&& pytest tests/

0 comments on commit 7cbf954

Please sign in to comment.