Skip to content

Commit

Permalink
add cross-version-numpy2-test
Browse files Browse the repository at this point in the history
  • Loading branch information
skjerns committed Jul 27, 2024
1 parent f9d5ccc commit 5a0269b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests_numpy_2_compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run tests
on:
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install numpy==1.9.3
pip install pytest
pip install -e .
pip install -r requirements-test.txt
pytest

0 comments on commit 5a0269b

Please sign in to comment.